This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 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> |