From 132142338346def454c8913c176bf5c0e0be8295 Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Mon, 24 Feb 2014 15:30:20 -0600 Subject: [PATCH] Removed accidental call to expand_url --- plugins/octopress_filters.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/octopress_filters.rb b/plugins/octopress_filters.rb index c07224f..40d6a97 100644 --- a/plugins/octopress_filters.rb +++ b/plugins/octopress_filters.rb @@ -79,7 +79,7 @@ module OctopressLiquidFilters def expand_urls(input, url='') url ||= '/' input.gsub /(\s+(href|src)\s*=\s*["|']{1})(\/[^\/\"'>]*)(["|']{1})/ do - $1 + expand_url($3, url) + $4 + $1 + $3 + $4 end end