Module:Wikipedia Signpost/Main page top preview

MyWikiBiz, Author Your Legacy — Tuesday April 23, 2024
Jump to navigationJump to search

This module allows Wikipedia:Wikipedia Signpost/Templates/Main page top to be previewed with today's date and an incremented issue number. This is used by the Signpost Publication Script during "dry-run" publication tests. Template:Notice


Usage

{{#invoke:Wikipedia Signpost|top}}

Lua error at line 9: attempt to index a nil value.


-- 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