parse-trim(clojure.contrib.lazy-xml)

Parses the source s, which can be a File, InputStream or String naming a URI. Returns a lazy tree of the clojure.xml/element struct-map, which has the keys :tag, :attrs, and :content and accessor fns tag, attrs, and content, with the whitespace trimmed from around each content string. This format is compatible with what clojure.xml/parse produces, except :content is a lazy seq instead of a vector. Other SAX-compatible parsers can be supplied by passing startparse, a fn taking a source and a ContentHandler and returning a parser. If a parser is specified, it will be run in a separate thread and be allowed to get ahead by queue-size items, which defaults to maxing. If no parser is specified and org.xmlpull.v1.XmlPullParser is in the classpath, this superior pull parser will be used.

; clojure/contrib/lazy_xml.clj:112
(defn parse-trim
  ([s] (first (mktree (parse-seq s))))
  ([s startparse queue-size]
    (first (mktree (parse-seq s startparse queue-size)))))

Copyright (c) Rich Hickey. All rights reserved.

The use and distribution terms for this software are covered by the Eclipse Public License 1.0, which can be found in the file epl-v10.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.