cantino/huginn

View on GitHub
app/helpers/markdown_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module MarkdownHelper

  def markdown(text)
    Kramdown::Document.new(text, auto_ids: false).to_html.html_safe
  end

end