All Projects → pkra → mathjax-node-page

pkra / mathjax-node-page

Licence: Apache-2.0 license
mathjax-node for pages

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to mathjax-node-page

Spmathkit
Render math exercises for your view. Contains the rendering of mathematical formulas and mathematical graphics, as well as the general text
Stars: ✭ 81 (+97.56%)
Mutual labels:  mathjax
notes
Simple text editor for your Markdown and LaTeX notes.
Stars: ✭ 24 (-41.46%)
Mutual labels:  mathjax
vscode-markdown-editor
A vscode extension to make your vscode become a full-featured WYSIWYG markdown editor
Stars: ✭ 249 (+507.32%)
Mutual labels:  mathjax
Ankdown
Easily make Anki flash cards in markdown
Stars: ✭ 111 (+170.73%)
Mutual labels:  mathjax
Jekyll Spaceship
🚀 A Jekyll plugin to provide powerful supports for table, mathjax, plantuml, mermaid, emoji, video, audio, youtube, vimeo, dailymotion, soundcloud, spotify, etc.
Stars: ✭ 196 (+378.05%)
Mutual labels:  mathjax
mathconverter
Converts from AsciiMath, LaTeX, MathML to LaTeX, MathML
Stars: ✭ 35 (-14.63%)
Mutual labels:  mathjax
Mathjax Third Party Extensions
A collection of MathJax extensions provided by third-party contributors
Stars: ✭ 61 (+48.78%)
Mutual labels:  mathjax
react-mathjax-preview
The MathJax React component you were looking for.
Stars: ✭ 46 (+12.2%)
Mutual labels:  mathjax
react-native-math-view
Math view for react native! No WebView!
Stars: ✭ 49 (+19.51%)
Mutual labels:  mathjax
mpMath
微信公众号公式编辑插件
Stars: ✭ 103 (+151.22%)
Mutual labels:  mathjax
Texme
Self-rendering Markdown + LaTeX documents
Stars: ✭ 1,970 (+4704.88%)
Mutual labels:  mathjax
Flutter tex
A Flutter Package to render Mathematics, Physics and Chemistry Equations based on LaTeX
Stars: ✭ 161 (+292.68%)
Mutual labels:  mathjax
ckeditor5-math
Math feature for CKEditor 5.
Stars: ✭ 51 (+24.39%)
Mutual labels:  mathjax
Asciidocfx
Asciidoc Editor and Toolchain written with JavaFX 16 (Build PDF, Epub, Mobi and HTML books, documents and slides)
Stars: ✭ 1,533 (+3639.02%)
Mutual labels:  mathjax
mathjax-node-cli
CLI tools for mathjax-node
Stars: ✭ 27 (-34.15%)
Mutual labels:  mathjax
Markdeck
presentations as code - author cool slide decks, text-only, offline-ready, collaborative
Stars: ✭ 1,159 (+2726.83%)
Mutual labels:  mathjax
typecho-markdown
A markdown parse plugin for typecho.
Stars: ✭ 135 (+229.27%)
Mutual labels:  mathjax
electron-markdown-editor
A simple electron markdown editor made with Uikit, Codemirror and markdown-it. Support for MathJax, code highlighting, live preview, and more.
Stars: ✭ 54 (+31.71%)
Mutual labels:  mathjax
MathJax-dev
Build and release tools for the MathJax project
Stars: ✭ 34 (-17.07%)
Mutual labels:  mathjax
StrapDown.js
✨ StrapDown.js is an awesome javascript tool to quickly publish nice-looking web-pages in pure Markdown 📝, with no server side compilation 😎 →
Stars: ✭ 86 (+109.76%)
Mutual labels:  mathjax

mathjax-node-page Build Status

Greenkeeper badge

This Node.js module builds on mathjax-node and provides processing of larger content fragments

installation

Use

npm install mathjax-node-page

to install mathjax-node-page and its dependencies.

Usage

mathjax-node-page exports mjpage which expects four parameters:

mjpage(input, mjpageConfig, mjnodeConfig, callback)

Where input is a string with HTML or jsdom object (JSDOM class should be acquired via exported JSDOM), pageConfig specifies page-wide options, and mjnodeConfig expects mathjax-node configuration options.

The defaults for pageConfig are

{
    format: ["MathML", "TeX", "AsciiMath"], // determines type of pre-processors to run
    output: '', // global override for output option; 'svg', 'html' or 'mml'
    tex: {}, // configuration options for tex pre-processor, cf. lib/tex.js
    ascii: {}, // configuration options for ascii pre-processor, cf. lib/ascii.js
    singleDollars: false, // allow single-dollar delimiter for inline TeX
    fragment: false, // return body.innerHTML instead of full document
    cssInline: true,  // determines whether inline css should be added
    jsdom: {...}, // jsdom-related options
    displayMessages: false, // determines whether Message.Set() calls are logged
    displayErrors: false, // determines whether error messages are shown on the console
    undefinedCharError: false, // determines whether unknown characters are saved in the error array
    extensions: '', // a convenience option to add MathJax extensions
    fontURL: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/fonts/HTML-CSS', // for webfont urls in the CSS for HTML output
    MathJax: {}, // options MathJax configuration, see https://docs.mathjax.org
    errorHandler: (id, wrapperNode, sourceFormula, sourceFormat, errors) => {...} // function to handle rendering error
}

and where mjnodeConfig represents mathjax-node configuration options, the defaults are.

{
  ex: 6, // ex-size in pixels
  width: 100, // width of math container (in ex) for linebreaking and tags
  useFontCache: true, // use <defs> and <use> in svg output?
  useGlobalCache: false, // use common <defs> for all equations?
  state: mjstate, // track global state
  linebreaks: false, // do linebreaking?
  equationNumbers: "none", // or "AMS" or "all"
  math: "", // the math to typeset
  html: false, // generate HTML output?
  css: false, // generate CSS for HTML output?
  mml: false, // generate mml output?
  svg: false, // generate svg output?
  speakText: true, // add spoken annotations to output?
  timeout: 10 * 1000, // 10 second timeout before restarting MathJax
}

Advanced usage

mathjax-node customization

mathjax-node-page exports init function that allows you to pass in a custom mathjax-node (for example, mathjax-node-svg2png).

const mjnode = require('mathjax-node-svg2png');
mjpage.init(mjnode);

If your custom mathjax-node provides new output options, you can add them by calling addOutput. As a second parameter, you can pass custom output handler, which is a function that modifies a DOM element with the conversion result. The default output handler behavior is to write contents to wrapper.innerHTML.

mjpage.addOutput('png', (wrapper, data) => {
	wrapper.innerHTML = `<img src="${data}">`;
});
// ...now you can use standard mathjax-node-page API

Reset to default mathjax-node behavior by calling init with empty parameters. Ensure that all your current mathjax-node-page tasks have been completed before calling it.

mjpage.init();  // reset back to default mathjax-node

Events

mjpage runs jobs which inherit EventEmitter and provide the following event hooks. Add the corresponding event handlers to manipulate the input/output and DOM before/after conversion.

All the event handlers are destroyed when job ends to prevent memory leaks.

Formula conversion events

  • beforeConversion -> handler(parsedFormula): runs before individual formula conversion started, but after initial DOM processing. All the formulas are wrapped in <script type="..."> tags, where @type is one of the following:
const scripts = document.querySelectorAll(`
    script[type="math/TeX"],
    script[type="math/inline-TeX"],
    script[type="math/AsciiMath"],
    script[type="math/MathML"],
    script[type="math/MathML-block"]`
);
  • afterConersion -> handler(parsedFormula): runs after individual formula conversion completed and DOM was changed. Formula DOM node is a <span class="mjpage..."> wrapper whose contents are the conversion result.

All formula conversion events pass ParsedFormula instance to the event handler.

{
    id, // index of formula on the page
    jobID, // mjpage job ID; formulas belonging to the same page run have the same jobID
    node, // DOM node with the formula (contents change before and after conversion)
    sourceFormula, // the source formula
    sourceFormat, // the source formula format (e.g. "inline-TeX")
    outputFormula, // the converted formula result from mathjax-node typeset function; use outputFormula[outputFormat] to get the resulting formula string
    outputFormat // the resulting formula format (e.g. "svg")
}

Page conversion events

  • beforeSerialiation -> handler(document, css): runs when converted page DOM was prepared immediately before serialization. Use to manipulate resulting page DOM. The event handler receives document node (jsdom) and page css. Won't trigger if input is a jsdom object.

If input is a HTML string, mjpage function callback receives result after the DOM serialization.
If input is a jsdom object, mjpage function callback receives jsdom object itself.

Error handling

When a rendering error occurs, config.errorHandler will be called. These arguments are passed:

  • id: index of formula on the page.
  • wrapperNode: The jsdom HTMLElement object where the rendered math should be put.
  • sourceFormula: The input math code.
  • sourceFormat: The format of input math code -- e.g. inline-TeX or TeX.
  • errors: A array of strings of MathJax-Node returned errors.

Modify the wrapperNode object to show some error message to user. The default error handling function is printing the error with console.log.

Example

mjpage(input, {
    format: ["TeX"]
}, {
    svg: true
}, function(output) {
    // output is your final result
})
.on('afterConversion', function(parsedFormula) {
    // manipulate parsed result and DOM at your will
    // see description of parsedFormula object above
});

CLI

mathjax-node-page installs a CLI tool. Run mjpage to print usage instructions.

Example

const mjpage = require('../lib/main.js').mjpage;
const fs = require('fs');
const input = fs.readFileSync('input.html');

mjpage(input, {format: ["TeX"]}, {svg: true}, function(output) {
    console.log(output); // resulting HTML string
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].