biommap/documentation/image-path.lua
2021-10-21 18:07:12 +02:00

11 lines
163 B
Lua

function fix_path (path)
return '../../../wiki/biommap.wiki/' .. path
end
function Image (element)
element.src = fix_path(element.src)
return element
end