diaspora/lib/diaspora/markdownify.rb
2011-10-11 16:12:32 -07:00

14 lines
318 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