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
439 440 441 |
# File 'lib/html_to_markdown/native.rb', line 439 def self.from_hash(hash) new end |
Instance Method Details
#code? ⇒ Boolean
423 |
# File 'lib/html_to_markdown/native.rb', line 423 def code? = false |
#definition_item? ⇒ Boolean
429 |
# File 'lib/html_to_markdown/native.rb', line 429 def definition_item? = false |
#definition_list? ⇒ Boolean
427 |
# File 'lib/html_to_markdown/native.rb', line 427 def definition_list? = true |
#group? ⇒ Boolean
435 436 437 |
# File 'lib/html_to_markdown/native.rb', line 435 def group? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#heading? ⇒ Boolean
411 |
# File 'lib/html_to_markdown/native.rb', line 411 def heading? = false |
#image? ⇒ Boolean
421 |
# File 'lib/html_to_markdown/native.rb', line 421 def image? = false |
#list? ⇒ Boolean
415 |
# File 'lib/html_to_markdown/native.rb', line 415 def list? = false |
#list_item? ⇒ Boolean
417 |
# File 'lib/html_to_markdown/native.rb', line 417 def list_item? = false |
#metadata_block? ⇒ Boolean
433 |
# File 'lib/html_to_markdown/native.rb', line 433 def = false |
#paragraph? ⇒ Boolean
413 |
# File 'lib/html_to_markdown/native.rb', line 413 def paragraph? = false |
#quote? ⇒ Boolean
425 |
# File 'lib/html_to_markdown/native.rb', line 425 def quote? = false |
#raw_block? ⇒ Boolean
431 |
# File 'lib/html_to_markdown/native.rb', line 431 def raw_block? = false |
#table? ⇒ Boolean
419 |
# File 'lib/html_to_markdown/native.rb', line 419 def table? = false |