about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/microformats/parser.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microformats/parser.clj b/src/microformats/parser.clj
index 9137eaa..e0e2310 100644
--- a/src/microformats/parser.clj
+++ b/src/microformats/parser.clj
@@ -403,7 +403,7 @@
 (defn parse
   "Parse a HTML string with microformats"
   ([html]
-     (let [document (some->> html to-node with-base-url)]
+     (let [document (to-node html)]
        (parse document (get-base-url document))))
   ([html base-url]
      (let [document (some->> html to-node first (with-base-url base-url) z/xml-zip)]