gitlab-org--gitlab-foss/app/helpers/wikis_helper.rb

6 lines
100 B
Ruby
Raw Normal View History

2012-02-20 12:16:55 -05:00
module WikisHelper
def markdown_to_html(text)
RDiscount.new(text).to_html.html_safe
end
end