class Redcarpet::Render::Safe
def html_escape(string)
are duplicating existing code from Houdini. This method
TODO: This is far from ideal to have such method as we
def html_escape(string) string.gsub(/['&\"<>\/]/, { '&' => '&', '<' => '<', '>' => '>', '"' => '"', "'" => ''', "/" => '/', }) end