Skip to content

Customizing helpers and views for the preview feature

bridgeutopia edited this page Feb 16, 2012 · 5 revisions

More options for Redcloth

  def to_html(m)
    require 'redcloth'
    require 'htmlentities'
    
    coder = HTMLEntities.new
    m = coder.decode(m)
    m =  RedCloth.new(m, [:filter_html, :sanitize_html]).to_html
    m
 end
Clone this wiki locally