跳转到内容

模組:HumorDistinguish

维基百科,自由的百科全书

这是本页的一个历史版本,由SunAfterRain留言 | 贡献2019年6月12日 (三) 05:27 建立内容为“local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments --initialize lazily local mTableTools --…”的新页面)编辑。这可能和当前版本存在着巨大的差异。

(差异) ←上一修订 | 最后版本 (差异) | 下一修订→ (差异)
local mHatnote = require('Module:Hatnote')
local mHatlist = require('Module:Hatnote list')
local mArguments --initialize lazily
local mTableTools --initialize lazily
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local p = {}

function p.distinguish(frame)
	mArguments = require('Module:Arguments')
	mTableTools = require('Module:TableTools')
	local args = mArguments.getArgs(frame)
	local selfref = args.selfref
	local text = args.text
	args = mTableTools.compressSparseArray(args)
	return p._distinguish(args, text, selfref)
end

function p._distinguish(args, text, selfref)
	checkType("_distinguish", 1, args, 'table')
	if #args == 0 and not text then return '' end
	local image = '[[File:Confusion humor.svg|24px]]'
	local text = string.format(
		"'''餵雞溫馨提示''':各位幽默感缺失的編者,此處有對應的%s正常版本以供食用。。",
		text or mHatlist.orList(args, true, true)
	)
	text = image .. '  ' .. text
	hnOptions = {selfref = selfref}
	return mHatnote._hatnote(text, hnOptions)
end

return p