Class: ReverseAsciidoctor::Config
- Inherits:
-
Object
- Object
- ReverseAsciidoctor::Config
- Defined in:
- lib/reverse_asciidoctor/config.rb
Instance Attribute Summary collapse
-
#tag_border ⇒ Object
Returns the value of attribute tag_border.
-
#unknown_tags ⇒ Object
Returns the value of attribute unknown_tags.
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
- #with(options = {}) ⇒ Object
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
5 6 7 8 9 10 11 |
# File 'lib/reverse_asciidoctor/config.rb', line 5 def initialize @unknown_tags = :pass_through @em_delimiter = '_'.freeze @strong_delimiter = '*'.freeze @inline_options = {} @tag_border = ' '.freeze end |
Instance Attribute Details
#tag_border ⇒ Object
Returns the value of attribute tag_border.
3 4 5 |
# File 'lib/reverse_asciidoctor/config.rb', line 3 def tag_border @tag_border end |
#unknown_tags ⇒ Object
Returns the value of attribute unknown_tags.
3 4 5 |
# File 'lib/reverse_asciidoctor/config.rb', line 3 def @unknown_tags end |
Instance Method Details
#with(options = {}) ⇒ Object
13 14 15 16 17 18 |
# File 'lib/reverse_asciidoctor/config.rb', line 13 def with( = {}) @inline_options = result = yield @inline_options = {} result end |