Module:Testing

From RuneTails
Revision as of 02:02, 13 February 2025 by NES (talk | contribs) (Replaced content with "local p = {} function p.getFilename(frame) local url = frame.args[1] or "" return mw.ustring.match(url, ".+/([^/]+)$") or url end return p")

Documentation for this module may be created at Module:Testing/doc

local p = {}

function p.getFilename(frame)
    local url = frame.args[1] or ""
    return mw.ustring.match(url, ".+/([^/]+)$") or url
end

return p