Class: HtmlToMarkdown::ConversionResult
- Inherits:
-
Object
- Object
- HtmlToMarkdown::ConversionResult
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#content ⇒ String?
Returns the value of attribute content.
-
#document ⇒ DocumentStructure?
Returns the value of attribute document.
-
#metadata ⇒ HtmlMetadata?
Returns the value of attribute metadata.
-
#tables ⇒ Array[TableData]?
Returns the value of attribute tables.
-
#warnings ⇒ Array[ProcessingWarning]?
Returns the value of attribute warnings.
Instance Method Summary collapse
-
#initialize ⇒ ConversionResult
constructor
A new instance of ConversionResult.
Constructor Details
#initialize ⇒ ConversionResult
Returns a new instance of ConversionResult.
244 |
# File 'sig/types.rbs', line 244
def initialize: (?content: String, ?document: DocumentStructure, ?metadata: HtmlMetadata, ?tables: Array[TableData], ?warnings: Array[ProcessingWarning]) -> void
|
Instance Attribute Details
#content ⇒ String?
Returns the value of attribute content.
238 239 240 |
# File 'sig/types.rbs', line 238 def content @content end |
#document ⇒ DocumentStructure?
Returns the value of attribute document.
239 240 241 |
# File 'sig/types.rbs', line 239 def document @document end |
#metadata ⇒ HtmlMetadata?
Returns the value of attribute metadata.
240 241 242 |
# File 'sig/types.rbs', line 240 def @metadata end |
#tables ⇒ Array[TableData]?
Returns the value of attribute tables.
241 242 243 |
# File 'sig/types.rbs', line 241 def tables @tables end |
#warnings ⇒ Array[ProcessingWarning]?
Returns the value of attribute warnings.
242 243 244 |
# File 'sig/types.rbs', line 242 def warnings @warnings end |