Skip to content

Instantly share code, notes, and snippets.

@mattmate
Created September 13, 2011 08:23
Show Gist options
  • Save mattmate/1213408 to your computer and use it in GitHub Desktop.
Save mattmate/1213408 to your computer and use it in GitHub Desktop.
Encoding Fix
module ERB::Util
def html_escape(s)
s = s.to_s.force_encoding("utf-8")
if s.html_safe?
s
else
s.gsub(/[&"><]/) { |special| HTML_ESCAPE[special] }.html_safe
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment