如何将一串Hiccup解析为打嗝节点?
例如,
"[:b 'hello world']"
进入[:b "hello world"]
答案 0 :(得分:3)
使用reader将字符串转换为数据结构:
user=> (clojure.edn/read-string "[:b 'hello world']")
[:b 'hello world']
您应该使用"
来表示字符串:
user=> (clojure.edn/read-string "[:b \"hello world\"]")
[:b "hello world"]