Class: HtmlToMarkdown::NodeContentDefinitionList
- Inherits:
-
Data
- Object
- Data
- HtmlToMarkdown::NodeContentDefinitionList
- Extended by:
- T::Sig
- Includes:
- NodeContent
- Defined in:
- lib/html_to_markdown/native.rb
Overview
A definition list container.
Class Method Summary collapse
Instance Method Summary collapse
- #code? ⇒ Boolean
- #definition_item? ⇒ Boolean
- #definition_list? ⇒ Boolean
- #group? ⇒ Boolean
- #heading? ⇒ Boolean
- #image? ⇒ Boolean
- #list? ⇒ Boolean
- #list_item? ⇒ Boolean
- #metadata_block? ⇒ Boolean
- #paragraph? ⇒ Boolean
- #quote? ⇒ Boolean
- #raw_block? ⇒ Boolean
- #table? ⇒ Boolean
Class Method Details
.from_hash(hash) ⇒ Object
499 500 501 |
# File 'lib/html_to_markdown/native.rb', line 499 def self.from_hash(hash) new end |
Instance Method Details
#code? ⇒ Boolean
483 |
# File 'lib/html_to_markdown/native.rb', line 483 def code? = false |
#definition_item? ⇒ Boolean
489 |
# File 'lib/html_to_markdown/native.rb', line 489 def definition_item? = false |
#definition_list? ⇒ Boolean
487 |
# File 'lib/html_to_markdown/native.rb', line 487 def definition_list? = true |
#group? ⇒ Boolean
495 496 497 |
# File 'lib/html_to_markdown/native.rb', line 495 def group? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#heading? ⇒ Boolean
471 |
# File 'lib/html_to_markdown/native.rb', line 471 def heading? = false |
#image? ⇒ Boolean
481 |
# File 'lib/html_to_markdown/native.rb', line 481 def image? = false |
#list? ⇒ Boolean
475 |
# File 'lib/html_to_markdown/native.rb', line 475 def list? = false |
#list_item? ⇒ Boolean
477 |
# File 'lib/html_to_markdown/native.rb', line 477 def list_item? = false |
#metadata_block? ⇒ Boolean
493 |
# File 'lib/html_to_markdown/native.rb', line 493 def = false |
#paragraph? ⇒ Boolean
473 |
# File 'lib/html_to_markdown/native.rb', line 473 def paragraph? = false |
#quote? ⇒ Boolean
485 |
# File 'lib/html_to_markdown/native.rb', line 485 def quote? = false |
#raw_block? ⇒ Boolean
491 |
# File 'lib/html_to_markdown/native.rb', line 491 def raw_block? = false |
#table? ⇒ Boolean
479 |
# File 'lib/html_to_markdown/native.rb', line 479 def table? = false |