Class: Coradoc::Element::Block::Literal
- Defined in:
- lib/coradoc/element/block/literal.rb
Instance Attribute Summary
Attributes inherited from Core
#attributes, #id, #lang, #lines, #title
Instance Method Summary collapse
-
#initialize(title, options = {}) ⇒ Literal
constructor
A new instance of Literal.
- #to_adoc ⇒ Object
Methods inherited from Core
#gen_anchor, #gen_attributes, #gen_delimiter, #gen_lines, #gen_title, #type
Constructor Details
#initialize(title, options = {}) ⇒ Literal
Returns a new instance of Literal.
5 6 7 8 9 10 11 |
# File 'lib/coradoc/element/block/literal.rb', line 5 def initialize(title, = {}) @id = .fetch(:id, nil) @anchor = @id.nil? ? nil : Inline::Anchor.new(@id) @lines = .fetch(:lines, []) @delimiter_char = "." @delimiter_len = .fetch(:delimiter_len, 4) end |
Instance Method Details
#to_adoc ⇒ Object
13 14 15 |
# File 'lib/coradoc/element/block/literal.rb', line 13 def to_adoc "\n\n#{gen_anchor}#{gen_delimiter}\n" << gen_lines << "\n#{gen_delimiter}\n\n" end |