View source for Module:Unbulleted list
From LIMSWiki
Jump to navigationJump to searchYou do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
-- This module implements {{unbulleted list}} and {{hlist}}.
local function getListItem( data, style, itemStyle )
if not data then
return nil
end
if style or itemStyle then
style = style or ''
itemStyle = itemStyle or ''
return mw.ustring.format(
'<li style="%s%s">%s</li>',
style, itemStyle, data
)
else
return mw.ustring.format(
'<li>%s</li>',
data
)
end
end
000
1:0
Return to Module:Unbulleted list.