Clojure XML Parsing
Suppose you have the following xml to parse in your file: <high-node> <low-node>my text</low-node> </high-node> you load clojure.xml: user=> (use ‘clojure.xml) when parsed, the xml will have the following structure: {:tag :high-node, :attrs nil, :content [{:tag :low-node, :attrs nil, :content [“my text”]}]} and then you can seq over the content of the file to get … Read more