I have a quick question. I'm working on a Clojure project. I want to add unique key to each li tag, like this:
(defn test [text]
[:li {:key :index} text])
How I can set keys like "hi+index"?
I tried
{:key (str "hi" index)}
but it does not working. I'm new to Clojure and hiccup.
Thank you very much.