clojure.data.xml
E
Prints the given Element tree as XML text to stream. Options: :encoding <str> Character encoding to use ...
function([e writer & {:as opts}])
Emits the Element to String and returns it. Options: :encoding <str> Character encoding to use :doct...
function([e & opts])
Parses an XML input source into a lazy sequence of pull events. Input source can be a java.io.InputStream or java.io.Re...
function([source {:keys [include-node? location-info coalescing supporting-external-entities allocator namespace-aware replacing-entity-references validating reporter resolver support-dtd], :or {include-node? #{:characters :element}, location-info true, coalescing true, supporting-external-entities false}}])
I
Emits the XML and indents the result. WARNING: this is slow it will emit the XML and read it in again to indent it. ...
function([e writer & opts])
Emits the XML and indents the result. Writes the results to a String and returns it
function([e & opts])
P
Parses an XML input source into a a tree of Element records. The element tree is realized lazily, so huge XML files can ...
function([source & {:keys [include-node? location-info coalescing supporting-external-entities allocator namespace-aware replacing-entity-references validating reporter resolver support-dtd], :or {include-node? #{:characters :element}, location-info true, coalescing true, supporting-external-entities false}}])
Parses an XML String into a a tree of Element records. Options: :include-node? subset of #{:element :characters :com...
function([string & {:keys [include-node? location-info coalescing supporting-external-entities allocator namespace-aware replacing-entity-references validating reporter resolver support-dtd], :or {include-node? #{:characters :element}, location-info true, coalescing true, supporting-external-entities false}}])