0.0.9 • Published 5 years ago

maths-inliner v0.0.9

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Maths-inliner

Finds all MathJax inline and display formulas in an html file and replaces them with inline SVG images.

Useful when you want to display mathematics fast and/or when using an embedded webview (e.g. Xamarin HybridWebView).

Allows the user to specify certain script tags (using the class="inline") to inline these scripts. Similarly the attribute class="inline" will inline images. (Tested only with SVG images at present.)

Prerequistes

  • cheerio
  • fs
  • mathjax-node

Installation

npm install maths-inliner

of to install globally:

npm install -g maths-inliner

Basic Usage

The exposed node script is called 'minliner'. It requires 2 arguments: the infile and the outfile.

minliner infile.html outfile.html

In infile.html decorate the scripts and SVG images you would like to inline with class="inline" and those you would like to ignore with class="hide". (For instance if you have scripts calling MathJax it is best to hide these as the inliner doesn't use them.)

Example

There is an example showing basic usage here.

Implementation

Uses regex to locate inline and display mathematics. Now uses mathjax-node to replace them with SVG code. Uses Promises for everything async.

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

7 years ago

0.0.1

7 years ago