about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/microformats/parser.clj10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/microformats/parser.clj b/src/microformats/parser.clj
index 8e325e3..fb0dc0d 100644
--- a/src/microformats/parser.clj
+++ b/src/microformats/parser.clj
@@ -174,13 +174,13 @@
 (defn parse-h
   "Parse h-* classes within a HTML element."
   [element]
-  (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-")])]))]
+  (let [el (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 :type (get-mf-names element)
               :properties (merge (parse-implied element)
-                                 (apply merge ((juxt parse-p parse-u parse-dt parse-e) el))))))
+                                 (apply merge (map #(apply merge %) (map (juxt parse-p parse-u parse-dt parse-e) el)))))))
 
 (defn select-h
   "Select h-* elements within a HTML document."