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.
800 |
# File 'sig/types.rbs', line 800
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.
793 794 795 |
# File 'sig/types.rbs', line 793 def blocks @blocks end |
#footnotes ⇒ Array[Footnote] (readonly)
Returns the value of attribute footnotes.
798 799 800 |
# File 'sig/types.rbs', line 798 def footnotes @footnotes end |
#images ⇒ Array[DjotImage] (readonly)
Returns the value of attribute images.
796 797 798 |
# File 'sig/types.rbs', line 796 def images @images end |
#links ⇒ Array[DjotLink] (readonly)
Returns the value of attribute links.
797 798 799 |
# File 'sig/types.rbs', line 797 def links @links end |
#metadata ⇒ Metadata (readonly)
Returns the value of attribute metadata.
794 795 796 |
# File 'sig/types.rbs', line 794 def @metadata end |
#plain_text ⇒ String (readonly)
Returns the value of attribute plain_text.
792 793 794 |
# File 'sig/types.rbs', line 792 def plain_text @plain_text end |
#tables ⇒ Array[Table] (readonly)
Returns the value of attribute tables.
795 796 797 |
# File 'sig/types.rbs', line 795 def tables @tables end |