因为以下原因,您没有权限编辑本页:
您可以查看和复制此页面的源代码。
-- This module outputs different kinds of lists. At the moment, bulleted,
-- unbulleted, horizontal, ordered, and horizontal ordered lists are supported.
local libUtil = require('libraryUtil')
local checkType = libUtil.checkType
local mTableTools = require('Module:TableTools')
local p = {}
local listTypes = {
['bulleted'] = true,
['unbulleted'] = true,
['horizontal'] = true,
['ordered'] = true,
['horizontal_ordered'] = true
}
function p.makeListData(listType, args)
-- Constructs a data table to be passed to p.renderList.
local data = {}
000
1:0
本页使用的模板:
- Template:Documentation(查看源代码)
- Template:Documentation/styles.css(查看源代码)
- Template:Hatnote/styles.css(查看源代码)
- Template:Mbox/styles.css(查看源代码)
- Template:Para(查看源代码)
- Template:T/piece(查看源代码)
- Template:Tag(查看源代码)
- Template:Tlx(查看源代码)
- Template:WP(查看源代码)
- Template:Wikipedia template(查看源代码)
- Module:Arguments(查看源代码)
- Module:DPLlua(查看源代码)
- Module:DependencyList(查看源代码)
- Module:Documentation(查看源代码)
- Module:Enum(查看源代码)
- Module:List(查看源代码)
- Module:List/doc(查看源代码)
- Module:Paramtest(查看源代码)
- Module:TableTools(查看源代码)
- Module:Yesno(查看源代码)
返回Module:List。