Module:List
Appearance
Documentation for this module may be created at Module:List/doc
local p = {}
function p.bulletList(frame)
local items = frame.args
local output = '\n'
for i, item in pairs(items) do
output = output .. '* ' .. item .. '\n'
end
return output
end
return p