Method: TeXMath::Converter#initialize
- Defined in:
- lib/texmath/converter.rb
#initialize(options = {}) ⇒ Converter
Create a new Converter.
36 37 38 39 40 |
# File 'lib/texmath/converter.rb', line 36 def initialize( = {}) @executable = .fetch(:executable, 'texmath') self.reader = .fetch(:from, :tex) self.writer = .fetch(:to, :mathml) end |