Class: ReverseAsciidoctor::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/reverse_asciidoctor/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



5
6
7
8
9
10
11
12
# File 'lib/reverse_asciidoctor/config.rb', line 5

def initialize
  @unknown_tags     = :pass_through
  @mathml2asciimath     = false
  @em_delimiter     = '_'.freeze
  @strong_delimiter = '*'.freeze
  @inline_options   = {}
  @tag_border       = ' '.freeze
end

Instance Attribute Details

#mathml2asciimathObject

Returns the value of attribute mathml2asciimath.



3
4
5
# File 'lib/reverse_asciidoctor/config.rb', line 3

def mathml2asciimath
  @mathml2asciimath
end

#tag_borderObject

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_tagsObject

Returns the value of attribute unknown_tags.



3
4
5
# File 'lib/reverse_asciidoctor/config.rb', line 3

def unknown_tags
  @unknown_tags
end

Instance Method Details

#with(options = {}) ⇒ Object



14
15
16
17
18
19
# File 'lib/reverse_asciidoctor/config.rb', line 14

def with(options = {})
  @inline_options = options
  result = yield
  @inline_options = {}
  result
end