Модуль:Infoboxes
Для документации этого модуля может быть создана страница Модуль:Infoboxes/doc
local p = {} function p.player(frame) local name = frame.args[1] local role = frame.args["role"] local discord = frame.args["discord"] local tabl = "" if discord ~= nil or role ~= nil then tabl = tabl.."{|" if role ~= nil then tabl = tabl.."|Роль||"..role end if discord ~= nil then tabl = tabl.."|Discord||"..discord end tabl = tabl.."|}" end return [[ <div style="float:right;padding:1rem;display:flex;gap:1rem;align-items:center;background-color:#00ffff29"> https://mc-heads.net/avatar/]]..name..[[/32.png <p>]]..name..[[</p> ]]..tabl..[[ </div> ]] end return p