summaryrefslogtreecommitdiff
path: root/app/helpers/wikis_helper.rb
blob: 0c24f57add6025ab6bf8306be1a50e5a74608b5a (plain)
1
2
3
4
5
module WikisHelper
  def markdown_to_html(text)
    RDiscount.new(text).to_html.html_safe
  end
end