Add once-useful lua script

Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
This commit is contained in:
2026-03-22 01:46:54 -05:00
parent a8f69a71f0
commit e4e513faf0

View File

@@ -0,0 +1,13 @@
function Image(el)
local src = el.src
if src:match("%.svg$") then
local alt = el.caption and pandoc.utils.stringify(el.caption) or ""
local obj = string.format(
'{{< inlinesvg "%s" "%s" >}}',
src, alt
)
return pandoc.RawInline("html", obj)
else
return el
end
end