You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Katherine G. Pe edited this page Aug 17, 2014
·
5 revisions
module ApplicationHelper
require 'redcloth'
require 'htmlentities'
def to_html(m)
coder = HTMLEntities.new
m = coder.decode(m)
m.tap do |md|
RedCloth.new(md, [:filter_html, :sanitize_html]).to_html
md.html_safe
end
end
end