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
819 820 821 |
# File 'lib/html_to_markdown/native.rb', line 819 def self.from_hash(hash) new end |
Instance Method Details
#bold? ⇒ Boolean
799 |
# File 'lib/html_to_markdown/native.rb', line 799 def bold? = false |
#code? ⇒ Boolean
807 |
# File 'lib/html_to_markdown/native.rb', line 807 def code? = false |
#highlight? ⇒ Boolean
813 |
# File 'lib/html_to_markdown/native.rb', line 813 def highlight? = false |
#italic? ⇒ Boolean
801 |
# File 'lib/html_to_markdown/native.rb', line 801 def italic? = false |
#link? ⇒ Boolean
815 816 817 |
# File 'lib/html_to_markdown/native.rb', line 815 def link? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#strikethrough? ⇒ Boolean
805 |
# File 'lib/html_to_markdown/native.rb', line 805 def strikethrough? = false |
#subscript? ⇒ Boolean
809 |
# File 'lib/html_to_markdown/native.rb', line 809 def subscript? = false |
#superscript? ⇒ Boolean
811 |
# File 'lib/html_to_markdown/native.rb', line 811 def superscript? = false |
#underline? ⇒ Boolean
803 |
# File 'lib/html_to_markdown/native.rb', line 803 def underline? = true |