Class: HtmlToMarkdown::VisitResultContinue
- Inherits:
-
Data
- Object
- Data
- HtmlToMarkdown::VisitResultContinue
- Extended by:
- T::Sig
- Includes:
- VisitResult
- Defined in:
- lib/html_to_markdown/native.rb
Overview
Continue with default conversion behavior
Class Method Summary collapse
Instance Method Summary collapse
- #continue? ⇒ Boolean
- #custom? ⇒ Boolean
- #error? ⇒ Boolean
- #preserve_html? ⇒ Boolean
- #skip? ⇒ Boolean
Class Method Details
.from_hash(hash) ⇒ Object
1010 1011 1012 |
# File 'lib/html_to_markdown/native.rb', line 1010 def self.from_hash(hash) new end |
Instance Method Details
#continue? ⇒ Boolean
998 |
# File 'lib/html_to_markdown/native.rb', line 998 def continue? = true |
#custom? ⇒ Boolean
1000 |
# File 'lib/html_to_markdown/native.rb', line 1000 def custom? = false |
#error? ⇒ Boolean
1006 1007 1008 |
# File 'lib/html_to_markdown/native.rb', line 1006 def error? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#preserve_html? ⇒ Boolean
1004 |
# File 'lib/html_to_markdown/native.rb', line 1004 def preserve_html? = false |
#skip? ⇒ Boolean
1002 |
# File 'lib/html_to_markdown/native.rb', line 1002 def skip? = false |