Skip to content

Instantly share code, notes, and snippets.

@ritaritual
Created February 21, 2018 19:29
Show Gist options
  • Save ritaritual/52f105033d49fabc2441705bc917ae6e to your computer and use it in GitHub Desktop.
Save ritaritual/52f105033d49fabc2441705bc917ae6e to your computer and use it in GitHub Desktop.
; and double ;; (and even triple ;;;) used for comments in Clojure and EDN
[:ul.menu ; <ul class="menu"
{:style {:list-style :none}} ; style="list-style: none">
[:li.active "First"] ; <li class="active">First</li>
[:li "Second"] ; <li>Second</li>
[:li "Third"]] ; <li>Third</li></ul>
; more simple examples
[:p "kiss me"] ; <p>kiss me</p>
[:p {:style {:color :red}} "!"] ; <p style="color: red">!</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment