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
434 435 436 |
# File 'lib/html_to_markdown/native.rb', line 434 def self.from_hash(hash) new end |
Instance Method Details
#code? ⇒ Boolean
418 |
# File 'lib/html_to_markdown/native.rb', line 418 def code? = false |
#definition_item? ⇒ Boolean
424 |
# File 'lib/html_to_markdown/native.rb', line 424 def definition_item? = false |
#definition_list? ⇒ Boolean
422 |
# File 'lib/html_to_markdown/native.rb', line 422 def definition_list? = false |
#group? ⇒ Boolean
430 431 432 |
# File 'lib/html_to_markdown/native.rb', line 430 def group? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#heading? ⇒ Boolean
406 |
# File 'lib/html_to_markdown/native.rb', line 406 def heading? = false |
#image? ⇒ Boolean
416 |
# File 'lib/html_to_markdown/native.rb', line 416 def image? = false |
#list? ⇒ Boolean
410 |
# File 'lib/html_to_markdown/native.rb', line 410 def list? = false |
#list_item? ⇒ Boolean
412 |
# File 'lib/html_to_markdown/native.rb', line 412 def list_item? = false |
#metadata_block? ⇒ Boolean
428 |
# File 'lib/html_to_markdown/native.rb', line 428 def = false |
#paragraph? ⇒ Boolean
408 |
# File 'lib/html_to_markdown/native.rb', line 408 def paragraph? = false |
#quote? ⇒ Boolean
420 |
# File 'lib/html_to_markdown/native.rb', line 420 def quote? = true |
#raw_block? ⇒ Boolean
426 |
# File 'lib/html_to_markdown/native.rb', line 426 def raw_block? = false |
#table? ⇒ Boolean
414 |
# File 'lib/html_to_markdown/native.rb', line 414 def table? = false |