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.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microformats/parser.clj b/src/microformats/parser.clj
index 4f63d55..8ae5665 100644
--- a/src/microformats/parser.clj
+++ b/src/microformats/parser.clj
@@ -73,8 +73,8 @@
   [content]
   (->> content
        html/texts
-       (map #(str/replace % #"\s+" " "))
        (apply str)
+       (#(str/replace % #"\s+" " "))
        str/trim))
 
 (defn get-base-url