Method: Latexmath.parse
- Defined in:
- lib/latexmath.rb
.parse(string) ⇒ Object
80 81 82 83 84 85 |
# File 'lib/latexmath.rb', line 80 def self.parse(string) lxm_input = HTMLEntities.new.decode(string) # parse Equation.new(lxm_input) end |