diaspora/lib/diaspora/markdownify.rb
2011-10-25 19:46:09 -07:00

15 lines
319 B
Ruby

require 'erb'
module Diaspora
module Markdownify
class HTML < Redcarpet::Render::HTML
include ActionView::Helpers::TextHelper
include ActionView::Helpers::TagHelper
def autolink(link, type)
auto_link(link, :link => :urls, :html => { :target => "_blank" })
end
end
end
end