Class: YARD::Templates::Helpers::Markup::RDocMarkupToHtml
- Inherits:
-
Object
- Object
- YARD::Templates::Helpers::Markup::RDocMarkupToHtml
- Defined in:
- lib/yard/templates/helpers/markup/rdoc_markup.rb
Instance Attribute Summary collapse
-
#from_path ⇒ Object
Returns the value of attribute from_path.
Instance Method Summary collapse
- #accept_paragraph(*args) ⇒ Object
-
#handle_special_HYPERLINK(special) ⇒ Object
Disable auto-link of URLs.
Instance Attribute Details
#from_path ⇒ Object
Returns the value of attribute from_path.
99 100 101 |
# File 'lib/yard/templates/helpers/markup/rdoc_markup.rb', line 99 def from_path @from_path end |
Instance Method Details
#accept_paragraph(*args) ⇒ Object
106 107 108 109 110 111 |
# File 'lib/yard/templates/helpers/markup/rdoc_markup.rb', line 106 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 |
#handle_special_HYPERLINK(special) ⇒ Object
Disable auto-link of URLs
102 103 104 |
# File 'lib/yard/templates/helpers/markup/rdoc_markup.rb', line 102 def handle_special_HYPERLINK(special) # rubocop:disable Style/MethodName @hyperlink ? special.text : super end |