0.1.2 • Published 4 years ago

hiccup-template v0.1.2

Weekly downloads
1
License
EPL-1.0
Repository
-
Last release
4 years ago

hiccup-template

A minimal Clojure/Script library for Hiccup style templating.

usage

(require '[hiccup-template.core :as ht])

(def data
 {:person
  {:first-name "John"
   :last-name "Doe"}})

 (def template
   [:div
    [:label "first name " :data/person.first-name]
    [:label "last name " :data/person.last-name]])

(ht/hiccup template data)
; [:div [:label "first name " "John"] [:label "last name " "Doe"]]

(ht/html template data)
; <div><label>first name John</label><label>last name Doe</label></div>
0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago