Module: MarkupHelper
- Included in:
- ActionView::Base
- Defined in:
- app/helpers/markup_helper.rb
Overview
This helper abstracts the several markup methods
into one method markup().
For example, on a Page, use:
<%= markup(@page.content) %>
Instance Method Summary collapse
Instance Method Details
#markup(text) ⇒ Object
12 13 14 |
# File 'app/helpers/markup_helper.rb', line 12 def markup(text) markdown text end |