# encoding: utf-8 module Nanoc3::Helpers # Nanoc3::Helpers::HTMLEscape contains functionality for HTML-escaping # strings. module HTMLEscape # Returns the HTML-escaped representation of the given string. Only &, <, # > and " are escaped. def html_escape(string) string.gsub('&', '&'). gsub('<', '<'). gsub('>', '>'). gsub('"', '"') end alias h html_escape end end