mirror of
https://gitlab.com/orbital-debris-research/directed-study/final-report.git
synced 2025-06-15 14:46:45 +00:00
11 lines
349 B
Lua
11 lines
349 B
Lua
function Image(el)
|
|
if FORMAT == "latex" then
|
|
-- convert svg to pdf
|
|
if string.sub(el.src, -4) == '.svg' then
|
|
local pdfName = string.gsub(el.src, "svg", "pdf")
|
|
pandoc.pipe('inkscape.exe', { el.src, '--export-filename', pdfName}, '')
|
|
el.src = pdfName
|
|
return el
|
|
end
|
|
end
|
|
end |