Class: HtmlToMarkdown::ConversionResult
- Inherits:
-
Object
- Object
- HtmlToMarkdown::ConversionResult
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#content ⇒ String?
readonly
Returns the value of attribute content.
-
#document ⇒ DocumentStructure?
readonly
Returns the value of attribute document.
-
#metadata ⇒ HtmlMetadata
readonly
Returns the value of attribute metadata.
-
#tables ⇒ Array[TableData]
readonly
Returns the value of attribute tables.
-
#warnings ⇒ Array[ProcessingWarning]
readonly
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.
242 |
# File 'sig/types.rbs', line 242
def initialize: (?content: String, ?document: DocumentStructure, ?metadata: HtmlMetadata, ?tables: Array[TableData], ?warnings: Array[ProcessingWarning]) -> void
|
Instance Attribute Details
#content ⇒ String? (readonly)
Returns the value of attribute content.
236 237 238 |
# File 'sig/types.rbs', line 236 def content @content end |
#document ⇒ DocumentStructure? (readonly)
Returns the value of attribute document.
237 238 239 |
# File 'sig/types.rbs', line 237 def document @document end |
#metadata ⇒ HtmlMetadata (readonly)
Returns the value of attribute metadata.
238 239 240 |
# File 'sig/types.rbs', line 238 def @metadata end |
#tables ⇒ Array[TableData] (readonly)
Returns the value of attribute tables.
239 240 241 |
# File 'sig/types.rbs', line 239 def tables @tables end |
#warnings ⇒ Array[ProcessingWarning] (readonly)
Returns the value of attribute warnings.
240 241 242 |
# File 'sig/types.rbs', line 240 def warnings @warnings end |