forked from mxx1111/mdlook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.mjs
More file actions
60 lines (57 loc) · 1.94 KB
/
Copy pathrun.mjs
File metadata and controls
60 lines (57 loc) · 1.94 KB
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
#!/usr/bin/env node
// Wrapper: sets up polyfills synchronously, then imports the TS entry via tsx.
// This .mjs file is NOT processed by tsx's import hooks — it runs as plain ESM,
// so all top-level code executes before the dynamic import() resolves.
function noop() {}
globalThis.MathJax = {
texReset() {},
tex2svg(latex) {
const svgStyle = {}
const styleProxy = new Proxy(svgStyle, {
set(_, prop, value) { svgStyle[prop] = value; return true },
get(_, prop) {
if (prop === 'setProperty')
return (p, v) => { svgStyle[p] = v }
if (prop === 'display')
return svgStyle[prop] || ''
return svgStyle[prop]
},
})
return {
firstChild: {
outerHTML: `<math xmlns="http://www.w3.org/1998/Math/MathML"><mi>${latex.replace(/</g, '<')}</mi></math>`,
style: styleProxy,
getAttribute: () => null,
removeAttribute: noop,
},
}
},
}
globalThis.window = {
MathJax: globalThis.MathJax,
addEventListener: noop,
removeEventListener: noop,
dispatchEvent: () => true,
getComputedStyle: () => ({ getPropertyValue: () => '' }),
requestAnimationFrame: typeof requestAnimationFrame !== 'undefined' ? requestAnimationFrame : cb => setTimeout(cb, 16),
matchMedia: () => ({ matches: false, addEventListener: noop, removeEventListener: noop }),
}
globalThis.document = {
getElementById: () => null,
documentElement: { getAttribute: () => null, style: {} },
createDocumentFragment: () => ({ appendChild: noop, childNodes: [] }),
querySelectorAll: () => [],
querySelector: () => null,
createElement: tag => ({
tagName: tag.toUpperCase(),
setAttribute: noop,
appendChild: noop,
innerHTML: '',
style: {},
}),
createTextNode: text => ({ textContent: text, data: text }),
body: { appendChild: noop },
head: { appendChild: noop },
}
// Now dynamically import the TS entry — tsx will compile it on the fly
import('./src/index.ts')