Class: HtmlToMarkdown::NodeContentQuote
- Inherits:
-
Data
- Object
- Data
- HtmlToMarkdown::NodeContentQuote
- Extended by:
- T::Sig
- Includes:
- NodeContent
- Defined in:
- lib/html_to_markdown/native.rb
Overview
A block quote 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
401 402 403 |
# File 'lib/html_to_markdown/native.rb', line 401 def self.from_hash(hash) new end |
Instance Method Details
#code? ⇒ Boolean
385 |
# File 'lib/html_to_markdown/native.rb', line 385 def code? = false |
#definition_item? ⇒ Boolean
391 |
# File 'lib/html_to_markdown/native.rb', line 391 def definition_item? = false |
#definition_list? ⇒ Boolean
389 |
# File 'lib/html_to_markdown/native.rb', line 389 def definition_list? = false |
#group? ⇒ Boolean
397 398 399 |
# File 'lib/html_to_markdown/native.rb', line 397 def group? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#heading? ⇒ Boolean
373 |
# File 'lib/html_to_markdown/native.rb', line 373 def heading? = false |
#image? ⇒ Boolean
383 |
# File 'lib/html_to_markdown/native.rb', line 383 def image? = false |
#list? ⇒ Boolean
377 |
# File 'lib/html_to_markdown/native.rb', line 377 def list? = false |
#list_item? ⇒ Boolean
379 |
# File 'lib/html_to_markdown/native.rb', line 379 def list_item? = false |
#metadata_block? ⇒ Boolean
395 |
# File 'lib/html_to_markdown/native.rb', line 395 def = false |
#paragraph? ⇒ Boolean
375 |
# File 'lib/html_to_markdown/native.rb', line 375 def paragraph? = false |
#quote? ⇒ Boolean
387 |
# File 'lib/html_to_markdown/native.rb', line 387 def quote? = true |
#raw_block? ⇒ Boolean
393 |
# File 'lib/html_to_markdown/native.rb', line 393 def raw_block? = false |
#table? ⇒ Boolean
381 |
# File 'lib/html_to_markdown/native.rb', line 381 def table? = false |