Created
February 21, 2018 19:29
-
-
Save ritaritual/52f105033d49fabc2441705bc917ae6e to your computer and use it in GitHub Desktop.
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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment