Class: Plurimath::Mathml

Inherits:
Object
  • Object
show all
Defined in:
lib/plurimath/mathml.rb,
lib/plurimath/mathml/parser.rb,
lib/plurimath/mathml/utility.rb,
lib/plurimath/mathml/constants.rb,
lib/plurimath/mathml/translator.rb,
lib/plurimath/mathml/formula_transformation.rb

Defined Under Namespace

Modules: FormulaTransformation, FunctionTokenResolver Classes: Constants, Parser, Translator, Utility

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(text) ⇒ Mathml

Returns a new instance of Mathml.



13
14
15
# File 'lib/plurimath/mathml.rb', line 13

def initialize(text)
  @text = text
end

Instance Attribute Details

#textObject

Returns the value of attribute text.



11
12
13
# File 'lib/plurimath/mathml.rb', line 11

def text
  @text
end

Instance Method Details

#to_formulaObject



17
18
19
# File 'lib/plurimath/mathml.rb', line 17

def to_formula
  Parser.new(text).parse
end