Skip to content

Instantly share code, notes, and snippets.

View ritaritual's full-sized avatar
🐢
Pew!

Rita Wójtowicz ritaritual

🐢
Pew!
View GitHub Profile
; 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>