diff options
author | Brandon Mathis <brandon@imathis.com> | 2014-02-24 15:30:20 -0600 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2014-02-24 15:30:20 -0600 |
commit | 132142338346def454c8913c176bf5c0e0be8295 (patch) | |
tree | ff1b959be4ec5f7c3f021ff97c3e0cb3be3cd12b | |
parent | 028769b73f1861e593b5bd6c723773a37b97f6cb (diff) | |
download | my_new_personal_website-132142338346def454c8913c176bf5c0e0be8295.tar.xz my_new_personal_website-132142338346def454c8913c176bf5c0e0be8295.zip |
Removed accidental call to expand_url
-rw-r--r-- | plugins/octopress_filters.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/octopress_filters.rb b/plugins/octopress_filters.rb index c07224fb..40d6a975 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 |