WP Manifestindependent plugin directory
manifest / unclassified / php-markdown-extra-math

Markdown Extra

PHP Markdown Extra with support for jsMath

by Michel Fortin · github.com/drdrang/php-markdown-extra-math · website

28stars
8forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/drdrang/php-markdown-extra-math/archive/refs/heads/master.zip

Readme

PHP Markdown Extra Math is an extension of Michel Fortin's PHP Markdown Extra, a PHP script for converting text written in Markdown to HTML. The extension consist of adding support for mathematical equations written in LaTeX to be processed by either the MathJax (default) or jsMath math rendering libraries.

Use

Here's how it works. The author, writing in Markdown, inserts inline equations like this

where \(\alpha = (t_1 - t_0)/L\) is the rate at which the thickness increases

enclosing the math in a \( … \) pair, just as if writing in LaTeX. PHP Markdown Extra Math converts that to

where <span class="MathJax_Preview">[math]</span> is the rate at which the thickness increases

for MathJax, or

where <span class="math"> \alpha = (t_1 - t_0)/L </span> is the rate at which the thickness increases

for jsMath. This is then converted by whichever math rendering library is being used to

inline math example

(The example is shown as an image but will be rendered as selectable and scalable text if the server has MathJax or jsMath installed.)

Similarly, display Math is enclosed in \[ … \] like this:

Putting this into Castigliano's equation, we get

\[\Delta = \frac{\partial U^*}{\partial F} = \frac{12F}{Eb} \int_0^L \frac{x^2}{(t_0 + \alpha x)^3} dx\]

which PHP Markdown Extra Math will turn into this HTML

<p>Putting this into the Castigliano equation, we get</p>

<span class="MathJax_Preview">[math]</span>

for MathJax, or

<p>Putting this into the Castigliano equation, we get</p>

<div class="math">\Delta = \frac{\partial U^*}{\partial F} = \frac{12F}{Eb} \int_0^L \frac{x^2}{(t_0 + \alpha x)^3} dx</div>

for jsMath. This will be rendered as:

display math example

Configuration

The choice of MathJax or jsMath output is made on Line 42 of markdown.php:

@define( 'MARKDOWN_MATH_TYPE',      "mathjax" );

Change the "mathjax" to "jsmath" to change the rendering library.

A MathJax detail

The <span class="MathJax_Preview">[…]</span> that precedes the MathJax code serves three purposes:

  1. It's a placeholder that's displayed briefly while the equations are rendered.
  2. It eliminates a rendering problem associated with Internet Explorer 8.
  3. It gives Instapaper users a sense of what the rendered equation would be (if they understand LaTeX).

License

PHP Markdown Extra Math is licensed under the same terms as PHP Markdown Extra. See the License.text file.

Read the full README on GitHub →