Changes

MyWikiBiz, Author Your Legacy — Saturday October 11, 2025
Jump to navigationJump to search
Pywikibot 6.4.0
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

Navigation menu