# File lib/nanoc3/helpers/html_escape.rb, line 14 def html_escape(string) string.gsub('&', '&'). gsub('<', '<'). gsub('>', '>'). gsub('"', '"') end