Module:Link: Difference between revisions

From SPCodex, The Smashing Pumpkins wiki
No edit summary
No edit summary
Line 7: Line 7:
end
end
return content
return content .. 'foo'


-- for _i, subject in ipairs({ 'Butch Vig', 'Billy Corgan' }) do
-- for _i, subject in ipairs({ 'Butch Vig', 'Billy Corgan' }) do

Revision as of 21:33, 17 April 2020

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

local str = {}

function str.producer( frame )
	local content = frame.args[1]
	if content == '' then
		return content
	end
	
	return content .. 'foo'

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

	-- return content
end

return str