module HtmlHelper def strip_html(html) strip_tags(html).gsub(/ /i, ' ').gsub(/&/i, '&') end end