-
- class Renderer < Redcarpet::Render::XHTML
- def link(link, _title, alt_text)
- "<a rel=\"nofollow\" href=\"#{link}\">#{alt_text}</a>"
- end
-
- def autolink(link, link_type)
- if link_type == :email
- "<a rel=\"nofollow\" href=\"mailto:#{link}\">#{link}</a>"
- else
- "<a rel=\"nofollow\" href=\"#{link}\">#{link}</a>"
- end
- end
- end