Files
biommap/documentation/image-path.lua
T

11 lines
163 B
Lua
Raw Normal View History

2021-10-21 17:21:23 +02:00
function fix_path (path)
2021-10-21 18:07:12 +02:00
return '../../../wiki/biommap.wiki/' .. path
2021-10-21 17:21:23 +02:00
end
function Image (element)
element.src = fix_path(element.src)
return element
end