Moduł:Formatuj Słownik

Z Nonsensopedii, polskiej encyklopedii humoru

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