Skip to content

Instantly share code, notes, and snippets.

@shreevatsa
Created November 9, 2017 15:07
Show Gist options
  • Save shreevatsa/170a1a8f217b20d86b5836e5e4821021 to your computer and use it in GitHub Desktop.
Save shreevatsa/170a1a8f217b20d86b5836e5e4821021 to your computer and use it in GitHub Desktop.
A Pandoc filter in JS (Node), for converting TeX snippets to SVG using mathjax-node
#!/usr/bin/env node
var pandoc = require('pandoc-filter');
var RawInline = pandoc.RawInline;
var mjAPI = require("mathjax-node");
mjAPI.config({
MathJax: {
// traditional MathJax configuration
}
});
mjAPI.start();
async function typesetAction(type, value, format, meta) {
if (type == 'Math') {
var isInline = (value[0].t == 'InlineMath');
var data = await mjAPI.typeset({
math: value[1],
format: (isInline ? 'inline-TeX' : 'TeX'),
svg: true,
linebreaks: true,
});
if (!data.errors && data.svg != '') {
return RawInline('html', '<span class="math ' + (isInline ? 'inline' : 'display') + '">' + data.svg + '</span>');
} else {
return Math(type, value);
}
}
}
// Cannot use this: See https://github.com/mvhenderson/pandoc-filter-node/issues/7 (and 1)
// pandoc.stdio(action);
async function walk(x, action, format, meta) {
if (Array.isArray(x)) {
const array = [];
for (const item of x) {
if (item === Object(item) && item.t) {
var res = await action(item.t, item.c || [], format, meta);
if (!res) {
array.push(await walk(item, action, format, meta));
}
else if (Array.isArray(res)) {
for (const z of res) {
array.push(await walk(z, action, format, meta));
};
}
else {
array.push(await walk(res, action, format, meta));
}
}
else {
array.push(await walk(item, action, format, meta));
}
}
return array;
}
else if (x === Object(x)) {
var obj = {};
for (const k of Object.keys(x)) {
obj[k] = await walk(x[k], action, format, meta);
}
return obj;
}
return x;
}
async function filter(data, action, format) {
return await walk(data, action, format, data.meta || data[0].unMeta);
}
function toJSONFilter(action) {
require('get-stdin')(function (json) {
var data = JSON.parse(json);
var format = (process.argv.length > 2 ? process.argv[2] : '');
filter(data, action, format).then(output => process.stdout.write(JSON.stringify(output)));
});
}
toJSONFilter(typesetAction);
@shreevatsa
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment