View source for Module:List
MyWikiBiz, Author Your Legacy — Friday May 16, 2025
Jump to navigationJump to searchYou do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
-- 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
Templates used on this page:
- Template:Clc (view source)
- Template:Module rating (view source)
- Template:Para (view source)
- Template:Pre2 (view source)
- Template:Tag (view source)
- Template:Tlx (view source)
- Template:Used in system (view source)
- Module:Arguments (view source)
- Module:List (view source)
- Module:List/doc (view source)
- Module:TableTools (view source)
Return to Module:List.