Permanently protected module
From Wikipedia, the free encyclopedia


local p = {}



function p.main()

	out = ''

	for _, style in ipairs(mw.getCurrentFrame():getParent().args) do

		out = out .. mw.getCurrentFrame():extensionTag(

			'templatestyles',

			'',

			{

				src = 'Import style/' .. style .. '.css'

			}

		)

	end

	return out

end



return p