class YARD::Templates::Helpers::Markup::RDocMarkupToHtml

def accept_paragraph(*args)

def accept_paragraph(*args)
  par = args.last
  text = par.respond_to?(:txt) ? par.txt : par.text
  @hyperlink = text =~ /\{(https?:|mailto:|link:|www\.)/ ? true : false
  super
end

def handle_special_HYPERLINK(special) # rubocop:disable Style/MethodName

rubocop:disable Style/MethodName
Disable auto-link of URLs
def handle_special_HYPERLINK(special) # rubocop:disable Style/MethodName
  @hyperlink ? special.text : super
end

def initialize

def initialize
  options = RDoc::Options.new
  options.pipe = true
  super(options)
end