切换搜索
搜索
切换菜单
notifications
切换个人菜单
查看“模块:Main list”的源代码
来自决策链云智库
更多操作
←
模块:Main list
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
--[[ -- This module produces a "For more details on this topic" link. It implements -- the {{Main list}} template. --]] local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments -- lazily initialise local mTableTools -- lazily initialise local p = {} function p.mainList(frame) mArguments = require('Module:Arguments') mTableTools = require('Module:TableTools') local args = mArguments.getArgs(frame, {parentOnly = true}) if not args[1] then return mHatnote.makeWikitextError( 'no page name specified', 'Template:Main list#Errors', args.category ) end return p._mainList(mTableTools.compressSparseArray(args)) end function p._mainList(args) local pages = mHatlist.andList(args, true) local text = string.format('For a more comprehensive list, see %s.', pages) return mHatnote._hatnote(text) end return p
本页使用的模板:
模板:Tl
(
查看源代码
)
模块:Main list/doc
(
查看源代码
)
返回
模块:Main list
。