Class: HtmlToMarkdown::AnnotationKindUnderline
- Inherits:
-
Data
- Object
- Data
- HtmlToMarkdown::AnnotationKindUnderline
- Extended by:
- T::Sig
- Includes:
- AnnotationKind
- Defined in:
- lib/html_to_markdown/native.rb
Overview
Underline.
Class Method Summary collapse
Instance Method Summary collapse
- #bold? ⇒ Boolean
- #code? ⇒ Boolean
- #highlight? ⇒ Boolean
- #italic? ⇒ Boolean
- #link? ⇒ Boolean
- #strikethrough? ⇒ Boolean
- #subscript? ⇒ Boolean
- #superscript? ⇒ Boolean
- #underline? ⇒ Boolean
Class Method Details
.from_hash(hash) ⇒ Object
792 793 794 |
# File 'lib/html_to_markdown/native.rb', line 792 def self.from_hash(hash) new end |
Instance Method Details
#bold? ⇒ Boolean
772 |
# File 'lib/html_to_markdown/native.rb', line 772 def bold? = false |
#code? ⇒ Boolean
780 |
# File 'lib/html_to_markdown/native.rb', line 780 def code? = false |
#highlight? ⇒ Boolean
786 |
# File 'lib/html_to_markdown/native.rb', line 786 def highlight? = false |
#italic? ⇒ Boolean
774 |
# File 'lib/html_to_markdown/native.rb', line 774 def italic? = false |
#link? ⇒ Boolean
788 789 790 |
# File 'lib/html_to_markdown/native.rb', line 788 def link? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#strikethrough? ⇒ Boolean
778 |
# File 'lib/html_to_markdown/native.rb', line 778 def strikethrough? = false |
#subscript? ⇒ Boolean
782 |
# File 'lib/html_to_markdown/native.rb', line 782 def subscript? = false |
#superscript? ⇒ Boolean
784 |
# File 'lib/html_to_markdown/native.rb', line 784 def superscript? = false |
#underline? ⇒ Boolean
776 |
# File 'lib/html_to_markdown/native.rb', line 776 def underline? = true |