Module:Redirect category printworthiness

From Ikwipedia
Revision as of 08:34, 6 November 2024 by EnWikiAdmin (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Redirect category printworthiness/doc

local p = {}

function p.syn(frame)
	local base = mw.title.getCurrentTitle().baseText
	local n = '\n'
	local code =
	"{{Redirect category shell|"..n..
	"{{"..base.."}}"..n..
	"{{R printworthy}}"..n..
	"}}"..n..
	""..n..
	"{{Redirect category shell|"..n..
	"{{"..base.."}}"..n..
	"{{R unprintworthy}}"..n..
	"}}"
	local args = { ['lang'] = 'wikitext',
				   ['code'] = code }
	return frame:expandTemplate{ title = 'Syntaxhighlight', args = args }	
end

return p