weavejester / hiccup

Fast library for rendering HTML in Clojure
http://weavejester.github.io/hiccup
Eclipse Public License 1.0
2.66k stars 174 forks source link

Style attribute with a map as value: doesn't evaluate code within the map #211

Open luontola opened 2 weeks ago

luontola commented 2 weeks ago

Input:

[:p {:style {:color (if true
                      "red"
                      "blue")}}
 "hello"]

Expected output:

<p style="color:red;">hello</p>

Actual output:

<p style="color:(if true &quot;red&quot; &quot;blue&quot;);">hello</p>

Hiccup version: 2.0.0-RC3