Toggle menu
15
236
81
27.8K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 04:48, 20 February 2025 by Prd (talk | contribs) (Created page with "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")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Initializes {{Redirect category printworthiness}}.



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