Moduł:Formatuj Słownik: Różnice pomiędzy wersjami

Z Nonsensopedii, polskiej encyklopedii humoru
M
M
Linia 4: Linia 4:
local function getSection(frame)
local function getSection(frame)
local args = tools.getArgs(frame)
local args = tools.getArgs(frame)
if not args[1] then return 'Nie podano strony docelowej.' end
if not args['1'] then return 'Nie podano strony docelowej.' end
return frame:callParserFunction{ name = '#lsth', args = args[1] }
return frame:callParserFunction{ name = '#lsth', args = args['1'] }
end
end



Wersja z 21:21, 2 cze 2020

Funkcje do formatowania haseł słownikowych przy transkluzji.


local tools = require('Moduł:Narzędzia')
local p = {}

local function getSection(frame)
	local args = tools.getArgs(frame)
	if not args['1'] then return 'Nie podano strony docelowej.' end
	return frame:callParserFunction{ name = '#lsth', args = args['1'] }
end

function p.zObrazkami(frame)
	return mw.text.trim(getSection(frame))
end

function p.bezObrazkow(frame)
end

return p