Module: StyleGuide::ApplicationHelper

Defined in:
app/helpers/style_guide/application_helper.rb

Instance Method Summary collapse

Instance Method Details

#escape_for_display(content) ⇒ Object



3
4
5
# File 'app/helpers/style_guide/application_helper.rb', line 3

def escape_for_display(content)
  content.gsub(/\</, "&lt;").gsub(/\>/, "&gt;").html_safe
end