publiclab/mapknitter

View on GitHub
app/helpers/map_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'rdiscount'

module MapHelper
  def markdown_to_html(markdown = "")
    RDiscount.new(markdown, :generate_toc).to_html
  end
end