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
764 765 766 |
# File 'lib/html_to_markdown/native.rb', line 764 def self.from_hash(hash) new end |
Instance Method Details
#bold? ⇒ Boolean
744 |
# File 'lib/html_to_markdown/native.rb', line 744 def bold? = false |
#code? ⇒ Boolean
752 |
# File 'lib/html_to_markdown/native.rb', line 752 def code? = false |
#highlight? ⇒ Boolean
758 |
# File 'lib/html_to_markdown/native.rb', line 758 def highlight? = false |
#italic? ⇒ Boolean
746 |
# File 'lib/html_to_markdown/native.rb', line 746 def italic? = false |
#link? ⇒ Boolean
760 761 762 |
# File 'lib/html_to_markdown/native.rb', line 760 def link? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#strikethrough? ⇒ Boolean
750 |
# File 'lib/html_to_markdown/native.rb', line 750 def strikethrough? = false |
#subscript? ⇒ Boolean
754 |
# File 'lib/html_to_markdown/native.rb', line 754 def subscript? = false |
#superscript? ⇒ Boolean
756 |
# File 'lib/html_to_markdown/native.rb', line 756 def superscript? = false |
#underline? ⇒ Boolean
748 |
# File 'lib/html_to_markdown/native.rb', line 748 def underline? = true |