katex-extension.ts 1.96 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
import katex from 'katex';

Timothy J. Baek's avatar
Timothy J. Baek committed
3
4
const inlineRule =
	/^(\${1,2})(?!\$)((?:\\.|[^\\\n])*?(?:\\.|[^\\\n\$]))\1(?=[\s?!\.,:?!。,:]|$)/;
Timothy J. Baek's avatar
Timothy J. Baek committed
5
6
7
8
const inlineRuleNonStandard = /^(\${1,2})(?!\$)((?:\\.|[^\\\n])*?(?:\\.|[^\\\n\$]))\1/; // Non-standard, even if there are no spaces before and after $ or $$, try to parse

const blockRule = /^(\${1,2})\n((?:\\[^]|[^\\])+?)\n\1(?:\n|$)/;

Timothy J. Baek's avatar
Timothy J. Baek committed
9
10
11
12
13
14
15
export default function (options = {}) {
	return {
		extensions: [
			inlineKatex(options, createRenderer(options, false)),
			blockKatex(options, createRenderer(options, true))
		]
	};
Timothy J. Baek's avatar
Timothy J. Baek committed
16
17
18
}

function createRenderer(options, newlineAfter) {
Timothy J. Baek's avatar
Timothy J. Baek committed
19
20
21
	return (token) =>
		katex.renderToString(token.text, { ...options, displayMode: token.displayMode }) +
		(newlineAfter ? '\n' : '');
Timothy J. Baek's avatar
Timothy J. Baek committed
22
23
24
}

function inlineKatex(options, renderer) {
Timothy J. Baek's avatar
Timothy J. Baek committed
25
26
27
28
29
30
31
32
	const nonStandard = options && options.nonStandard;
	const ruleReg = nonStandard ? inlineRuleNonStandard : inlineRule;
	return {
		name: 'inlineKatex',
		level: 'inline',
		start(src) {
			let index;
			let indexSrc = src;
Timothy J. Baek's avatar
Timothy J. Baek committed
33

Timothy J. Baek's avatar
Timothy J. Baek committed
34
35
36
37
38
39
40
41
			while (indexSrc) {
				index = indexSrc.indexOf('$');
				if (index === -1) {
					return;
				}
				const f = nonStandard ? index > -1 : index === 0 || indexSrc.charAt(index - 1) === ' ';
				if (f) {
					const possibleKatex = indexSrc.substring(index);
Timothy J. Baek's avatar
Timothy J. Baek committed
42

Timothy J. Baek's avatar
Timothy J. Baek committed
43
44
45
46
					if (possibleKatex.match(ruleReg)) {
						return index;
					}
				}
Timothy J. Baek's avatar
Timothy J. Baek committed
47

Timothy J. Baek's avatar
Timothy J. Baek committed
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
				indexSrc = indexSrc.substring(index + 1).replace(/^\$+/, '');
			}
		},
		tokenizer(src, tokens) {
			const match = src.match(ruleReg);
			if (match) {
				return {
					type: 'inlineKatex',
					raw: match[0],
					text: match[2].trim(),
					displayMode: match[1].length === 2
				};
			}
		},
		renderer
	};
Timothy J. Baek's avatar
Timothy J. Baek committed
64
65
66
}

function blockKatex(options, renderer) {
Timothy J. Baek's avatar
Timothy J. Baek committed
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
	return {
		name: 'blockKatex',
		level: 'block',
		tokenizer(src, tokens) {
			const match = src.match(blockRule);
			if (match) {
				return {
					type: 'blockKatex',
					raw: match[0],
					text: match[2].trim(),
					displayMode: match[1].length === 2
				};
			}
		},
		renderer
	};
}