Method: IsoDoc::PresentationXMLConvert#mathml
- Defined in:
- lib/isodoc/presentation_function/math.rb
#mathml(docxml) ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/isodoc/presentation_function/math.rb', line 9 def mathml(docxml) docxml.xpath("//m:math", MATHML).each { |f| mathml_linebreak(f) } locale = twitter_cldr_localiser docxml.xpath("//m:math", MATHML).each do |f| # rubocop:disable Style/CombinableLoops mathml1(f, locale) end end |