Class: YARD::Templates::Helpers::Markup::RDocMarkupToHtml

Inherits:
Object
  • Object
show all
Defined in:
lib/yard/templates/helpers/markup/rdoc_markup.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#from_pathObject

Returns the value of attribute from_path.



89
90
91
# File 'lib/yard/templates/helpers/markup/rdoc_markup.rb', line 89

def from_path
  @from_path
end

Instance Method Details

#accept_paragraph(*args) ⇒ Object



96
97
98
99
100
101
# File 'lib/yard/templates/helpers/markup/rdoc_markup.rb', line 96

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

Disable auto-link of URLs



92
93
94
# File 'lib/yard/templates/helpers/markup/rdoc_markup.rb', line 92

def handle_special_HYPERLINK(special)
  @hyperlink ? special.text : super
end