Module:Link

From SPCodex, The Smashing Pumpkins wiki
Revision as of 21:09, 17 April 2020 by MusikAnimal (talk | contribs) (Created page with "local str = {} function str.producer( content ) for subject in {'Billy Corgan', 'Butch Vig'} do mw.ustring.gsub( content, subject, '[[:Category:Songs produced by ' .. subj...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Link/doc

local str = {}

function str.producer( content )
	for subject in {'Billy Corgan', 'Butch Vig'} do
		mw.ustring.gsub( content, subject, '[[:Category:Songs produced by ' .. subject .. '|' .. subject .. ']]' )
	end

	return content
end