Fixed the expand_url filter. Finally.
Thanks @larryprice
This commit is contained in:
parent
1321423383
commit
0ead88e6c2
@ -78,8 +78,8 @@ module OctopressLiquidFilters
|
||||
# Replaces relative urls with full urls
|
||||
def expand_urls(input, url='')
|
||||
url ||= '/'
|
||||
input.gsub /(\s+(href|src)\s*=\s*["|']{1})(\/[^\/\"'>]*)(["|']{1})/ do
|
||||
$1 + $3 + $4
|
||||
input.gsub /(\s+(href|src)\s*=\s*["|']{1})(\/[^\/>]{1}[^\"'>]*)/ do
|
||||
$1+url+$3
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user