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
737 738 739 |
# File 'lib/html_to_markdown/native.rb', line 737 def self.from_hash(hash) new end |
Instance Method Details
#bold? ⇒ Boolean
717 |
# File 'lib/html_to_markdown/native.rb', line 717 def bold? = false |
#code? ⇒ Boolean
725 |
# File 'lib/html_to_markdown/native.rb', line 725 def code? = false |
#highlight? ⇒ Boolean
731 |
# File 'lib/html_to_markdown/native.rb', line 731 def highlight? = false |
#italic? ⇒ Boolean
719 |
# File 'lib/html_to_markdown/native.rb', line 719 def italic? = false |
#link? ⇒ Boolean
733 734 735 |
# File 'lib/html_to_markdown/native.rb', line 733 def link? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#strikethrough? ⇒ Boolean
723 |
# File 'lib/html_to_markdown/native.rb', line 723 def strikethrough? = false |
#subscript? ⇒ Boolean
727 |
# File 'lib/html_to_markdown/native.rb', line 727 def subscript? = false |
#superscript? ⇒ Boolean
729 |
# File 'lib/html_to_markdown/native.rb', line 729 def superscript? = false |
#underline? ⇒ Boolean
721 |
# File 'lib/html_to_markdown/native.rb', line 721 def underline? = true |