Visa källa för Modul:List
← Modul:ListDu har inte behörighet att redigera denna sida, av följande anledning:
Du kan se och kopiera denna sidas källtext.
-- 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
Mall som används på den här sidan:
Tillbaka till Modul:List.