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.
93 94 95 |
# File 'lib/yard/templates/helpers/markup/rdoc_markup.rb', line 93 def from_path @from_path end |
Instance Method Details
#accept_paragraph(*args) ⇒ Object
100 101 102 103 104 105 |
# File 'lib/yard/templates/helpers/markup/rdoc_markup.rb', line 100 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
96 97 98 |
# File 'lib/yard/templates/helpers/markup/rdoc_markup.rb', line 96 def handle_special_HYPERLINK(special) # rubocop:disable Style/MethodName @hyperlink ? special.text : super end |