Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Latest commit

 

History

History
41 lines (27 loc) · 972 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 972 Bytes

singultus

Singultus is a fork of crate which is ClojureScript implementation of the awesome Hiccup html templating library.

Usage

(ns myapp
 (:use-macros [singultus.def-macros :only [defpartial]])
 (:require [singultus.core :as singultus]))

(singultus/html [:p.woot {:id "blah"} "Hey!"])
=> <p class="woot" id="blah">Hey!</p>

(defpartial header []
 [:header
   [:h1 "My app!"]])

(header)
=> <header><h1>My app!</h1></header>

Differences from Hiccup

  • The singultus.core/html returns dom nodes instead of strings of html
  • You can use dom nodes in element bodies like this:
(singultus/html [:div (crate/raw "<span>foo</span><strong>bar</strong>")])
=> <div><span>foo</span><strong>bar</strong></div>

License

Copyright (C) 2011 Chris Granger

Copyright (C) 2020 Pratik Karki

Distributed under the Eclipse Public License, the same as Clojure.