biommap/documentation/image-path.lua

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