Skip to content

Instantly share code, notes, and snippets.

@semperos
Created May 29, 2012 13:14
Show Gist options
  • Save semperos/2828315 to your computer and use it in GitHub Desktop.
Save semperos/2828315 to your computer and use it in GitHub Desktop.
Select lists, Hiccup vs Crate
[:select
(form/select-options [["-- select --" "nil"]
["Foo" "foo"]
["Bar" "bar"]]
"nil")]
<!-- Hiccup output -->
<select>
<option selected="" value="nil">-- select --</option>
<option value="foo">Foo</option>
<option value="bar">Bar</option>
</select>
<!-- Crate output -->
<select>
<option selected="true" value="nil">-- select --</option>
<option selected="false" value="foo">Foo</option>
<option selected="false" value="bar">Bar</option>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment