summaryrefslogtreecommitdiff
path: root/Meta/convert-markdown-links.lua
blob: eb1d55341e0c93b8d811dfb26f7a2bd634e35e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
function Link(el)
    el.target = string.gsub(el.target, "file:///bin/.*", "/cant-run-application.html")
    el.target = string.gsub(el.target, "help://man/([^/]*)/(.*)", "/man%1/%2.html")
    return el
end

function Image(el)
    -- Images that are not icons are always copied to the website root.
    if el.src:find("^/res/icons/") == nil then
        el.src = "/" .. el.src
        return el
    end

    local pattern = "/res/icons/(.*)"
    local image = string.gsub(el.src, pattern, "%1")

    el.src = "/icons/" .. image
    file = io.open("icons.txt", "a+")
    file:write(image .. "\n")
    file:close()
    return el
end