# File lib/yard/templates/helpers/html_helper.rb, line 59 def html_markup_markdown(text) # TODO: other libraries might be more complex provider = markup_class(:markdown) if provider.to_s == 'RDiscount' markup_class(:markdown).new(text, :autolink).to_html else markup_class(:markdown).new(text).to_html end end