Module:Unstrip

From Final Fantasy XIV Online Wiki
Jump to navigation Jump to search
Documentation for Module:Unstrip does not exist yet [create] (How does this work?)
local getArgs = require('Module:Arguments').getArgs

local p = {}

function p.unstrip(frame)
    local args = getArgs(frame)
    return mw.text.unstrip(args[1] or '')
end

function p.unstripNoWiki(frame)
    local args = getArgs(frame)
    return mw.text.unstripNoWiki(args[1] or '')
end

return p