diff --git a/src/clj_pebble/web/extensions.clj b/src/clj_pebble/web/extensions.clj
index 3975002..8876cd6 100644
--- a/src/clj_pebble/web/extensions.clj
+++ b/src/clj_pebble/web/extensions.clj
@@ -56,22 +56,22 @@
(defonce extensions
{:functions
{"path"
- {:fn (fn [url]
- (get-context-url url))}
+ (fn [url]
+ (get-context-url url))
"stylesheet"
- {:fn (fn [url & [media]]
- (let [fmt (if media
- ""
- "")
- resource-path (get-minified-resource-url url)]
- (format fmt (get-url-string resource-path) media)))}
+ (fn [url & [media]]
+ (let [fmt (if media
+ ""
+ "")
+ resource-path (get-minified-resource-url url)]
+ (format fmt (get-url-string resource-path) media)))
"javascript"
- {:fn (fn [url]
- (let [fmt ""
- resource-path (get-minified-resource-url url)]
- (format fmt (get-url-string resource-path))))}}
+ (fn [url]
+ (let [fmt ""
+ resource-path (get-minified-resource-url url)]
+ (format fmt (get-url-string resource-path))))}
:filters
{}