Class: Coradoc::AsciiDoc::Model::Inline::AttributeReference
Overview
Attribute reference inline element for AsciiDoc documents.
Attribute references insert the value of a document attribute.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The attribute name to reference.
Attributes inherited from Base
Method Summary
Methods inherited from Base
Methods inherited from Base
#block_level?, #inline?, #serialize_content, #simplify_block_content, #to_adoc, #to_h, visit, #visit
Instance Attribute Details
#name ⇒ String (readonly)
Returns The attribute name to reference.
19 20 21 |
# File 'lib/coradoc/asciidoc/model/inline/attribute_reference.rb', line 19 class AttributeReference < Base attribute :name, :string end |