Class: HtmlToMarkdown::HeaderMetadata
- Inherits:
-
Object
- Object
- HtmlToMarkdown::HeaderMetadata
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#depth ⇒ Integer
readonly
Returns the value of attribute depth.
-
#html_offset ⇒ Integer
readonly
Returns the value of attribute html_offset.
-
#id ⇒ String
readonly
Returns the value of attribute id.
-
#level ⇒ Integer
readonly
Returns the value of attribute level.
-
#text ⇒ String
readonly
Returns the value of attribute text.
Instance Method Summary collapse
-
#initialize ⇒ HeaderMetadata
constructor
A new instance of HeaderMetadata.
- #is_valid ⇒ Boolean
Constructor Details
#initialize ⇒ HeaderMetadata
Returns a new instance of HeaderMetadata.
35 |
# File 'sig/types.rbs', line 35
def initialize: (level: Integer, text: String, ?id: String, depth: Integer, html_offset: Integer) -> void
|
Instance Attribute Details
#depth ⇒ Integer (readonly)
Returns the value of attribute depth.
32 33 34 |
# File 'sig/types.rbs', line 32 def depth @depth end |
#html_offset ⇒ Integer (readonly)
Returns the value of attribute html_offset.
33 34 35 |
# File 'sig/types.rbs', line 33 def html_offset @html_offset end |
#id ⇒ String (readonly)
Returns the value of attribute id.
31 32 33 |
# File 'sig/types.rbs', line 31 def id @id end |
#level ⇒ Integer (readonly)
Returns the value of attribute level.
29 30 31 |
# File 'sig/types.rbs', line 29 def level @level end |
#text ⇒ String (readonly)
Returns the value of attribute text.
30 31 32 |
# File 'sig/types.rbs', line 30 def text @text end |
Instance Method Details
#is_valid ⇒ Boolean
36 |
# File 'sig/types.rbs', line 36
def is_valid: () -> bool
|