Method: Latexmath::Equation#to_mathml

Defined in:
lib/latexmath/equation.rb

#to_mathmlObject



7
8
9
10
11
# File 'lib/latexmath/equation.rb', line 7

def to_mathml
  tokens = Tokenizer.new(@latex).tokenize
  aggregate = Aggregator.new(tokens).aggregate
  Converter.new(aggregate).convert
end