Class: HtmlToMarkdown::AnnotationKindSubscript
- Inherits:
-
Data
- Object
- Data
- HtmlToMarkdown::AnnotationKindSubscript
- Extended by:
- T::Sig
- Includes:
- AnnotationKind
- Defined in:
- lib/html_to_markdown/native.rb
Overview
Subscript text.
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
827 828 829 |
# File 'lib/html_to_markdown/native.rb', line 827 def self.from_hash(hash) new end |
Instance Method Details
#bold? ⇒ Boolean
807 |
# File 'lib/html_to_markdown/native.rb', line 807 def bold? = false |
#code? ⇒ Boolean
815 |
# File 'lib/html_to_markdown/native.rb', line 815 def code? = false |
#highlight? ⇒ Boolean
821 |
# File 'lib/html_to_markdown/native.rb', line 821 def highlight? = false |
#italic? ⇒ Boolean
809 |
# File 'lib/html_to_markdown/native.rb', line 809 def italic? = false |
#link? ⇒ Boolean
823 824 825 |
# File 'lib/html_to_markdown/native.rb', line 823 def link? = false # @param hash [Hash] deserialized from the native extension # @return [self] |
#strikethrough? ⇒ Boolean
813 |
# File 'lib/html_to_markdown/native.rb', line 813 def strikethrough? = false |
#subscript? ⇒ Boolean
817 |
# File 'lib/html_to_markdown/native.rb', line 817 def subscript? = true |
#superscript? ⇒ Boolean
819 |
# File 'lib/html_to_markdown/native.rb', line 819 def superscript? = false |
#underline? ⇒ Boolean
811 |
# File 'lib/html_to_markdown/native.rb', line 811 def underline? = false |