diff options
-rw-r--r-- | src/microformats/parser.clj | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/microformats/parser.clj b/src/microformats/parser.clj index 573d3e2..ac7aef2 100644 --- a/src/microformats/parser.clj +++ b/src/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." |