模組:Look from

被永久保护的模块
维基百科,自由的百科全书
文档图示 模块文档[创建]
local p = {}
local mNS = require('Module:Namespace')

function p._main(args, frame)
	local overrideNS = args['ns']
	local title = args['1']
		and mw.title.new(args['1'], overrideNS)
		or (overrideNS and mw.title.new(mw.title.getCurrentTitle().text, overrideNS) or mw.title.getCurrentTitle())

	local text = args['2'] or '名稱以「-{' .. title.prefixedText ..'}-」開頭的所有' .. mNS._NamespacesDisplay(nil, title.namespace)

	return '<span class="selfreference">[[Special:PrefixIndex/' .. title.prefixedText .. '|' .. text .. ']]</span>'
end

function p.main(frame)
	local args = frame:getParent().args
	return p._main(args, frame)
end

return p