-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtex2html.js
100 lines (81 loc) · 2.72 KB
/
tex2html.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const url = require('url')
const path = require('path')
const LruCache = require('lru-cache')
const { mathjax } = require('mathjax-full/js/mathjax.js');
const { TeX } = require('mathjax-full/js/input/tex.js');
const { CHTML } = require('mathjax-full/js/output/chtml.js');
const { SVG } = require('mathjax-full/js/output/svg.js');
const { liteAdaptor } = require('mathjax-full/js/adaptors/liteAdaptor.js');
const { RegisterHTMLHandler } = require('mathjax-full/js/handlers/html.js');
const { AssistiveMmlHandler } = require('mathjax-full/js/a11y/assistive-mml.js');
const { AllPackages } = require('mathjax-full/js/input/tex/AllPackages.js');
const escapedCharacters = '^$()[]{}*.?+\\|'
function toEscapedString(source) {
const chars = source.split('').map(char => {
return escapedCharacters.includes(char) ? '\\' + char : char
})
const lastChar = chars[chars.length - 1]
if (lastChar.match(/\w/)) chars.push('\\b')
return chars.join('')
}
function ensureArray(option) {
if (!option) {
return []
} else if (Array.isArray(option)) {
return option
} else {
return [option]
}
}
module.exports = (options, tempPath) => {
let {
em = 16,
ex = 8,
width = 80 * 16,
packages = AllPackages,
target = '',
} = options
let cache
if (options.cache !== false) {
cache = new LruCache({ ...options.cache })
}
if (typeof packages === 'string') {
packages = packages.split(/\s*,\s*/)
}
const { macros, presets } = options
for (const key in macros) {
if (typeof macros[key] !== 'string') {
delete macros[key]
}
}
const macroRegex = new RegExp(Object.keys(macros).map(toEscapedString).join('|'), 'g')
// set up mathjax and conversion function
const adaptor = liteAdaptor();
const handler = RegisterHTMLHandler(adaptor);
//AssistiveMmlHandler(handler);
const tex = new TeX({ packages });
//const chtml = new CHTML({ fontURL: 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/output/chtml/fonts/woff-v2' });
const svg = new SVG({ fontCache: 'local' });
const html = mathjax.document('', { InputJax: tex, OutputJax: svg });
let style = adaptor.textContent(svg.styleSheet(html));
return {
style,
render(source, display, localPresets) {
source = presets.concat(ensureArray(localPresets)).join('') + source
source = source.replace(macroRegex, matched => macros[matched] + ' ')
if (cache) {
const output = cache.get(source)
if (typeof output === 'string') return output
}
const node = html.convert(source, {
display: display,
em: em,
ex: ex,
containerWidth: width
});
const output = adaptor.outerHTML(node);
if (cache) cache.set(source, output)
return output
},
}
}