这是Module:Import style的当前版本,由光能合成者(留言 | 贡献)编辑于2022年3月14日 (一) 03:48 (無)。这个网址是本页该版本的固定链接。
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