Changes

Pywikibot 6.4.0
-- This module allows [[Wikipedia:Wikipedia Signpost/Templates/Main page top]] to
-- be previewed with today's date and an incremented issue number.

p = {}

p.top = function()
local title = mw.title.new("Wikipedia:Wikipedia Signpost/Templates/Main page top")
local wikitext = title:getContent()
:gsub("<!%-%-.-%-%->","") -- remove comments
:gsub("<noinclude>.-</noinclude>","") -- remove noincludes
:gsub("{{Wikipedia:Wikipedia Signpost/Issue|1}}", "{{TODAY}}") -- use current date
:gsub( -- increment issue number
"{{Str right|{{Wikipedia:Wikipedia Signpost/Issue|2}}|10}}",
"issue {{#expr:1+{{Str right|{{Wikipedia:Wikipedia Signpost/Issue|2}}|16}}}}"
)
-- process and return the wikitext
return mw.getCurrentFrame():preprocess( wikitext )
end

return p