Last active
April 9, 2023 08:15
-
-
Save lierdakil/00d8143465a488e0b854a3b4bf355cf6 to your computer and use it in GitHub Desktop.
Pandoc filter to parse GitLab math
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Math(el) | |
if el.mathtype == "InlineMath" then | |
if el.text:sub(1,1) == '`' and el.text:sub(#el.text) == '`' then | |
local text = el.text:sub(2,#el.text-1) | |
return pandoc.Math(el.mathtype, text) | |
else | |
local cont = pandoc.read(el.text) | |
return { pandoc.Str("$") } .. cont.blocks[1].content .. { pandoc.Str("$") } | |
end | |
end | |
end | |
function CodeBlock(el) | |
if el.classes[1] == "math" then | |
return pandoc.Para({ pandoc.Math("DisplayMath", el.text) }) | |
end | |
end |
Many thanks, this is exactly what I needed!
@lierdakil could you give a license for this so it can be safely copied?
@stephanlachnit consider this published under WTHPL v1.0. Or if you insist on something less tongue-in-cheek, MIT.
Thanks!
thank you so much!!! Very usefull !!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks <3