我怎样才能将字符串解析为打嗝?

时间:2015-03-21 03:51:44

标签: clojure clojurescript om reagent hiccup

如何将一串Hiccup解析为打嗝节点?

例如, "[:b 'hello world']"进入[:b "hello world"]

1 个答案:

答案 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"]