.. _mathml-output: ############## MathML Support ############## MathJax uses MathML as the basis for its internal format for mathematical expressions, so MathML support is built into MathJax at a fundamental level. There is a :ref:`MathML input jax ` for converting from MathML elements into the internal format (javascript objects representing the MathML elements), and there is a mechanism that can convert the internal format into a serialized MathML string provided by :meth:`MathJax.startup.toMML()` (if you are using MathJax components). .. _NativeMML: While MathJax version 2 included a `NativeMML` output jax for producing MathML output in the web page, because MathML is not available in the Chrome, Edge, and IE browsers, because the MathML support in Safari and Firefox don't include all the features needed by MathJax (e.g., the `` element needed for labeled equations), and because the quality of the results in Safari and Firefox are not always comparable to the output from MathJax, the `NativeMML` output jax is no longer provided in MathJax version 3. You can, however, use MathJax's MathML serialization features to implement your own native MathML output if you wish. Here is one example that does so for TeX input to MathML output. .. code-block:: html This example uses the :ref:`startup-component` component to load just the :ref:`input/tex ` and :ref:`contextual menu ` components, and defines a new render action that replaces the standard ``typeset`` action with one that creates a MathJax container element and stores it in :attr:`math.typesetRoot`, then converts the internal format to a MathML string (via :meth:`MathJax.startup.toMML()`) and has the browser parse that into DOM element (via :attr:`innerHTML`). A later render action will move the container and its MathML contents into the DOM at the proper location. For math that is in display style, the container is marked with an attribute so that CSS can be used to make the container be a block-level element with some top and bottom margin. The example also takes several steps to disable the Assistive MathML extension that inserts hidden MathML for the usual output renders. This is unneeded since we are generating MathML ourselves as the primary output. Setting the :attr:`menuOptions.settings.assistiveMml` option to ``false`` turns off the assistive MathML in the contextual menu. The :func:`pageReady()` function also includes a line that disables the assistive-MathML item in the menu, so user's can't accidentaly turn it on again. Finally, the `assistiveMml` render action is disabled, since it will never be activated (overkill perhaps, but no need to run the usual code for nothing). .. note:: MathJax's version 2 NativeMML output processor worked around various limitations of Firefox/Gecko and Safari/WebKit (e.g., to provide support for equation labels), but this approach does not, as it just uses the generic MathML. |-----|