如何将字符串解析为 Hiccup?

How can I parse string into Hiccup?

如何将一串Hiccup解析成一个Hiccup节点?

例如, "[:b 'hello world']" 变成 [:b "hello world"]

使用reader将字符串转换为数据结构:

user=> (clojure.edn/read-string "[:b 'hello world']")
[:b 'hello world']

你应该使用"来表示字符串:

user=> (clojure.edn/read-string "[:b \"hello world\"]")
[:b "hello world"]