Class: HtmlToMarkdown::HtmlMetadata
- Inherits:
-
Object
- Object
- HtmlToMarkdown::HtmlMetadata
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#document ⇒ DocumentMetadata?
Returns the value of attribute document.
-
#headers ⇒ Array[HeaderMetadata]?
Returns the value of attribute headers.
-
#images ⇒ Array[ImageMetadata]?
Returns the value of attribute images.
-
#links ⇒ Array[LinkMetadata]?
Returns the value of attribute links.
-
#structured_data ⇒ Array[StructuredData]?
Returns the value of attribute structured_data.
Instance Method Summary collapse
-
#initialize ⇒ HtmlMetadata
constructor
A new instance of HtmlMetadata.
Constructor Details
#initialize ⇒ HtmlMetadata
Returns a new instance of HtmlMetadata.
76 |
# File 'sig/types.rbs', line 76
def initialize: (?document: DocumentMetadata, ?headers: Array[HeaderMetadata], ?links: Array[LinkMetadata], ?images: Array[ImageMetadata], ?structured_data: Array[StructuredData]) -> void
|
Instance Attribute Details
#document ⇒ DocumentMetadata?
Returns the value of attribute document.
70 71 72 |
# File 'sig/types.rbs', line 70 def document @document end |
#headers ⇒ Array[HeaderMetadata]?
Returns the value of attribute headers.
71 72 73 |
# File 'sig/types.rbs', line 71 def headers @headers end |
#images ⇒ Array[ImageMetadata]?
Returns the value of attribute images.
73 74 75 |
# File 'sig/types.rbs', line 73 def images @images end |
#links ⇒ Array[LinkMetadata]?
Returns the value of attribute links.
72 73 74 |
# File 'sig/types.rbs', line 72 def links @links end |
#structured_data ⇒ Array[StructuredData]?
Returns the value of attribute structured_data.
74 75 76 |
# File 'sig/types.rbs', line 74 def structured_data @structured_data end |