Модул:Module wikitext — разлика између измена

Iz Vojne Enciklopedije
Пређи на навигацију Пређи на претрагу
(Нова страница: local p = {} p.text = '' function p.main() return p.text end function p._addText(text, preprocessFrame) if preprocessFrame ~= false then text = (preprocessFrame…)
 
(Нова страница: local p = {} p.text = '' function p.main() return p.text end function p._addText(text, preprocessFrame) if preprocessFrame ~= false then text = (preprocessFrame…)

Верзија на датум 13. јануар 2021. у 17:40

Документацију овог модула можете да направите на страници Модул:Module wikitext/док

local p = {}

p.text = ''

function p.main()
	return p.text
end

function p._addText(text, preprocessFrame)
	if preprocessFrame ~= false then
		text = (preprocessFrame or mw.getCurrentFrame()):preprocess(text)
	end
	p.text = p.text .. text
end

return p