1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
6 from librarian import get_resource
7 from . import TreeEmbed, create_embed, downgrades_to
10 class MathML(TreeEmbed):
11 @downgrades_to('application/x-latex')
14 >>> print(MathML(etree.fromstring('<mat>a < b</mat>')).to_latex().data.strip())
17 >>> print(MathML(etree.fromstring('<mat>< & &lt; A</mat>')).to_latex().data.strip())
21 xslt = etree.parse(get_resource('res/embeds/mathml/mathml2latex.xslt'))
22 output = self.tree.xslt(xslt)
23 text = six.text_type(output)
24 # Workaround for entities being preserved in output. But there should be a better way.
25 text = text.replace('<', '<').replace('&', '&')
26 return create_embed('application/x-latex', data=text)