a small temp fix for tag markup getting in the way of markdown stuff

This commit is contained in:
Maxwell Salzberg 2011-10-25 19:21:07 -07:00
parent dc742845c9
commit d903ab7686

View file

@ -9,6 +9,10 @@ module Diaspora
def autolink(link, type) def autolink(link, type)
auto_link(link, :link => :urls, :html => { :target => "_blank" }) auto_link(link, :link => :urls, :html => { :target => "_blank" })
end end
def paragraph(text)
"<p>#{text} </p>".html_safe
end
end end
end end
end end