lambdaisland

Alys Brooks 2023-06-16T22:05:58.602409Z

New release of lambdaisland/hiccup! This introduces several potentially breaking changes in behavior in how we handle attributes in order to more closely conform with Reagent's hiccup implementation. However, this change is more consistent with the overall project goal of reducing the overhead of switching between hiccup in Clojure and ClojureScript, most code will not be affected, and makes things less surprising overall. For example, [:div {:tab-index 0 }] will return <div tabindex="0"></div> (which is the correct spelling of that attribute) rather than <div tab-index="0"></div>. Generally speaking, attributes that are strings rather than keywords will still not be converted, see the https://github.com/lambdaisland/hiccup/pull/5 or https://github.com/lambdaisland/hiccup/releases/tag/v0.0.25 for details.

[com.lambdaisland/hiccup "0.0.25"]
{com.lambdaisland/hiccup {:mvn/version "0.0.25"}}

🎉 4