Jump to content

Module:Import style

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Tol (talk | contribs) at 01:39, 23 November 2021 (create). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local p = {}

function p.main()
	out = ''
	for style in ipairs(frame:getParent().args) do
		out = out .. frame:extensionTag(
			'templatestyles',
			{
				src = 'Import style/' .. style .. '.css'
			}
		)
	end
	return out
end

return p