Drop useless escaping of now latin-only urls

This commit is contained in:
Saivann 2014-06-14 00:18:33 -04:00
parent 1aa0dadaa1
commit 53cc7e3798

View file

@ -63,10 +63,6 @@ module Jekyll
if ar.has_key?(id) && ar[id].is_a?(String)
text = ar[id]
end
#urlencode if string is a url
if cat == 'url'
text=CGI::escape(text)
end
#replace urls and anchors in string
url = site['loc'][lang]['url']
url.each do |key,value|