Class: Crawlberg::MarkdownResult
- Inherits:
-
Object
- Object
- Crawlberg::MarkdownResult
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#citations ⇒ Boolean
readonly
Returns the value of attribute citations.
-
#content ⇒ String
readonly
Returns the value of attribute content.
-
#document_structure ⇒ String?
readonly
Returns the value of attribute document_structure.
-
#fit_content ⇒ String?
readonly
Returns the value of attribute fit_content.
-
#tables ⇒ Array[String]
readonly
Returns the value of attribute tables.
-
#warnings ⇒ Array[String]
readonly
Returns the value of attribute warnings.
Instance Method Summary collapse
-
#initialize ⇒ MarkdownResult
constructor
A new instance of MarkdownResult.
Constructor Details
#initialize ⇒ MarkdownResult
Returns a new instance of MarkdownResult.
360 |
# File 'sig/types.rbs', line 360
def initialize: (?content: String, ?document_structure: String, ?tables: Array[String], ?warnings: Array[String], ?citations: bool, ?fit_content: String) -> void
|
Instance Attribute Details
#citations ⇒ Boolean (readonly)
Returns the value of attribute citations.
357 358 359 |
# File 'sig/types.rbs', line 357 def citations @citations end |
#content ⇒ String (readonly)
Returns the value of attribute content.
353 354 355 |
# File 'sig/types.rbs', line 353 def content @content end |
#document_structure ⇒ String? (readonly)
Returns the value of attribute document_structure.
354 355 356 |
# File 'sig/types.rbs', line 354 def document_structure @document_structure end |
#fit_content ⇒ String? (readonly)
Returns the value of attribute fit_content.
358 359 360 |
# File 'sig/types.rbs', line 358 def fit_content @fit_content end |
#tables ⇒ Array[String] (readonly)
Returns the value of attribute tables.
355 356 357 |
# File 'sig/types.rbs', line 355 def tables @tables end |
#warnings ⇒ Array[String] (readonly)
Returns the value of attribute warnings.
356 357 358 |
# File 'sig/types.rbs', line 356 def warnings @warnings end |