Modul:Benutzer:Se4598

aus Wikipedia, der freien Enzyklopädie
Zur Navigation springen Zur Suche springen
f123 p1 2 3
f123 '4' p143
f123 ' 4 ' (p1 4 3
render bold wikibold link! {{template}}

local function log(val, func)
    if func == nil then
        func = 'unknown'
    end
    mw.log(func .. ': ' .. val)
end
local function AndLog(val, func)
    log(val, func)
    return val
end

local export = {}	
function export.f123(frame)
    local name = frame.args[1]
    return export.p123(name)
end
function export.p123(name)
    if not name then
        name = ' 2 '
    end
    local text = 'p1' .. name .. '3'
    return AndLog(text, 'export.p123')
end
function export.render(frame)
    return AndLog('<b>bold</b> \'\'\'wikibold\'\'\' [[link]]! {{template}}')
    end
return export