跳转到内容

模組:沙盒/PexEric/heading

维基百科,自由的百科全书
local p = {}

function p.main(frame)
    local title = frame.args[1] or ''
    
    title = mw.text.trim(title)
    
    if title == '' then
        return ''
    end
    
    return '== ' .. title .. ' ==\n'
end

return p