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