Class: Xberg::DjotContent
- Inherits:
-
Object
- Object
- Xberg::DjotContent
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#blocks ⇒ Array[FormattedBlock]
readonly
Returns the value of attribute blocks.
-
#footnotes ⇒ Array[Footnote]
readonly
Returns the value of attribute footnotes.
-
#images ⇒ Array[DjotImage]
readonly
Returns the value of attribute images.
-
#links ⇒ Array[DjotLink]
readonly
Returns the value of attribute links.
-
#metadata ⇒ Metadata
readonly
Returns the value of attribute metadata.
-
#plain_text ⇒ String
readonly
Returns the value of attribute plain_text.
-
#tables ⇒ Array[Table]
readonly
Returns the value of attribute tables.
Instance Method Summary collapse
-
#initialize ⇒ DjotContent
constructor
A new instance of DjotContent.
Constructor Details
#initialize ⇒ DjotContent
Returns a new instance of DjotContent.
770 |
# File 'sig/types.rbs', line 770
def initialize: (plain_text: String, blocks: Array[FormattedBlock], metadata: Metadata, tables: Array[Table], images: Array[DjotImage], links: Array[DjotLink], footnotes: Array[Footnote]) -> void
|
Instance Attribute Details
#blocks ⇒ Array[FormattedBlock] (readonly)
Returns the value of attribute blocks.
763 764 765 |
# File 'sig/types.rbs', line 763 def blocks @blocks end |
#footnotes ⇒ Array[Footnote] (readonly)
Returns the value of attribute footnotes.
768 769 770 |
# File 'sig/types.rbs', line 768 def footnotes @footnotes end |
#images ⇒ Array[DjotImage] (readonly)
Returns the value of attribute images.
766 767 768 |
# File 'sig/types.rbs', line 766 def images @images end |
#links ⇒ Array[DjotLink] (readonly)
Returns the value of attribute links.
767 768 769 |
# File 'sig/types.rbs', line 767 def links @links end |
#metadata ⇒ Metadata (readonly)
Returns the value of attribute metadata.
764 765 766 |
# File 'sig/types.rbs', line 764 def @metadata end |
#plain_text ⇒ String (readonly)
Returns the value of attribute plain_text.
762 763 764 |
# File 'sig/types.rbs', line 762 def plain_text @plain_text end |
#tables ⇒ Array[Table] (readonly)
Returns the value of attribute tables.
765 766 767 |
# File 'sig/types.rbs', line 765 def tables @tables end |