15 lines
382 B
Ruby
15 lines
382 B
Ruby
module Diaspora
|
|
module Markdownify
|
|
class HTML < Redcarpet::Render::HTML
|
|
include ActionView::Helpers::TextHelper
|
|
|
|
def autolink link, type
|
|
Twitter::Autolink.auto_link_urls(
|
|
link,
|
|
url_target: "_blank",
|
|
link_attribute_block: lambda {|_, attr| attr[:rel] += " noopener noreferrer" }
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|