Модуль:Infoboxes: различия между версиями

Материал из DiPix Wiki
Нет описания правки
Нет описания правки
Строка 6: Строка 6:
local tabl = ""
local tabl = ""
if discord ~= nil or role ~= nil then
if discord ~= nil or role ~= nil then
tabl = tabl.."{|"
tabl = tabl.."{|\n"
if role ~= nil then
if role ~= nil then
tabl = tabl.."|Роль||"..role
tabl = tabl.."|Роль||\n"..role
end
end
if discord ~= nil then
if discord ~= nil then
tabl = tabl.."|Discord||"..discord
tabl = tabl.."|Discord||\n"..discord
end
end
tabl = tabl.."|}"
tabl = tabl.."|}"

Версия от 09:23, 12 марта 2024

Для документации этого модуля может быть создана страница Модуль: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.."{|\n"
		if role ~= nil then
			tabl = tabl.."|Роль||\n"..role
		end
		if discord ~= nil then
			tabl = tabl.."|Discord||\n"..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