all repos — archive/microformats @ afd0a7540b18dd713a93ad144307da8fac0b2857

Incomplete Clojure microformats library

Fix errors in parse-children

Alan Pearce
commit

afd0a7540b18dd713a93ad144307da8fac0b2857

parent

16c845fbe5963f29c6b65991ef792ace84893673

1 file changed, 5 insertions(+), 5 deletions(-)

jump to
M src/microformats/parser.cljsrc/microformats/parser.clj
@@ -130,11 +130,11 @@
(defn parse-children "Parse element children for microformats" [element] - (let [el (first (html/select element {(html/attr-starts :class "p-") - (html/attr-starts :class "u-") - (html/attr-starts :class "dt-") - (html/attr-starts :class "e-")}))] - (hash-map :properties (merge ((juxt parse-p parse-u parse-dt parse-e)))))) + (let [el (first (html/select element [(html/union [(html/attr-starts :class "p-") + (html/attr-starts :class "u-") + (html/attr-starts :class "dt-") + (html/attr-starts :class "e-")])]))] + (hash-map :properties (apply merge ((juxt parse-p parse-u parse-dt parse-e) el))))) (defn parse-h "Parse h-* classes within a HTML document."