跳转到内容

模組:Indicator

被永久保护的模块
维基百科,自由的百科全书

这是Module:Indicator当前版本,由Xiplus-abot留言 | 贡献编辑于2021年12月20日 (一) 00:05 (已保护“Module:Indicator”:高風險模板:664引用<!-- 機器人3 -->([编辑=仅允许自动确认用户](无限期)[移动=仅允许自动确认用户](无限期)))。这个网址是本页该版本的固定链接。

(差异) ←上一修订 | 最后版本 (差异) | 下一修订→ (差异)
local getArgs = require('Module:Arguments').getArgs
local p = {}
 
function p.main(frame)
	local args = getArgs(frame)
	local text = ''
	
	if args.image then
		text = '[[File:' .. args.image .. '|' .. (args.size or '24px') .. '|' .. args.alt .. '|link=' .. args.link .. ']]'
	end
	if args.text  then
		local temptext = args.text
		if args.fontsize then
			temptext = tostring( mw.html.create( 'span' ):css( 'font-size', args.fontsize ):wikitext( args.text ) )
		end
		text = text .. temptext
	end
	
	text = tostring( mw.html.create( 'div' ):attr{title=args.title, class=args.class}:wikitext( text ) )
	
	return text  == '' and '' or frame:extensionTag{
		name = 'indicator',
		content = text,
		args = { name = string.format( '%x', require( 'Module:Crc32lua' ).crc32( text ) ) },
	}
end

return p