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
472 473 474 |
# File 'lib/html_to_markdown/native.rb', line 472 def self.from_hash(hash) new end |
Instance Method Details
#code? ⇒ Boolean
456 |
# File 'lib/html_to_markdown/native.rb', line 456 def code? = false |
#definition_item? ⇒ Boolean
462 |
# File 'lib/html_to_markdown/native.rb', line 462 def definition_item? = false |
#definition_list? ⇒ Boolean
460 |
# File 'lib/html_to_markdown/native.rb', line 460 def definition_list? = true |
#group? ⇒ Boolean
468 469 470 |
# File 'lib/html_to_markdown/native.rb', line 468 def group? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#heading? ⇒ Boolean
444 |
# File 'lib/html_to_markdown/native.rb', line 444 def heading? = false |
#image? ⇒ Boolean
454 |
# File 'lib/html_to_markdown/native.rb', line 454 def image? = false |
#list? ⇒ Boolean
448 |
# File 'lib/html_to_markdown/native.rb', line 448 def list? = false |
#list_item? ⇒ Boolean
450 |
# File 'lib/html_to_markdown/native.rb', line 450 def list_item? = false |
#metadata_block? ⇒ Boolean
466 |
# File 'lib/html_to_markdown/native.rb', line 466 def = false |
#paragraph? ⇒ Boolean
446 |
# File 'lib/html_to_markdown/native.rb', line 446 def paragraph? = false |
#quote? ⇒ Boolean
458 |
# File 'lib/html_to_markdown/native.rb', line 458 def quote? = false |
#raw_block? ⇒ Boolean
464 |
# File 'lib/html_to_markdown/native.rb', line 464 def raw_block? = false |
#table? ⇒ Boolean
452 |
# File 'lib/html_to_markdown/native.rb', line 452 def table? = false |