react-math

React component that converts text into MathML

Usage no npm install needed!

<script type="module">
  import reactMath from 'https://cdn.skypack.dev/react-math';
</script>

README

react-math

Format math text into MathML. Uses the ascii-math module, please note not all browsers support mathml: caniuse... mathml.

Installation

npm install react-math

Demo

http://cezary.github.io/react-math/

Example

var React = require('react');
var MathML = require('react-math');

var Component = React.createClass({
  render: function() {
    return (
      <MathML text='e^(i pi)=-1'/>
    );
  }
});

License

MIT