blob: 101021783b66fffe6ccc2e214d8170dd120fba6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
function Pandoc(doc)
local tmp_name = os.tmpname()
local math = assert(io.popen("deno run server-katex/math.ts > " .. tmp_name, "w"))
doc:walk({
Math = function(el)
if el.mathtype == 'DisplayMath' then
assert(math:write("d" .. el.text:gsub("\n", " ") .. "\n"))
else
assert(math:write("i" .. el.text:gsub("\n", " ") .. "\n"))
end
end
})
math:close()
local tmp = assert(io.open(tmp_name, "r"))
doc = doc:walk({
Math = function(el)
return pandoc.RawInline(FORMAT, tmp:read())
end
})
tmp:close()
os.remove(tmp_name)
return doc
end
|