View source for Module:Collapsible list
You 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 {{collapsible list}}.
local p = {}
local function gettitlestyletracking( ts )
if not ts then return '' end
ts = mw.ustring.gsub(mw.ustring.lower(ts), '%s', '')
local tsvals = mw.text.split(ts, ';')
table.sort(tsvals)
local skey = table.concat(tsvals,';')
skey = mw.ustring.gsub(skey, '^;', '')
skey = mw.text.encode(mw.text.encode(skey),'%c%[%]=')
if (mw.ustring.match(';' .. ts, ';background:') or mw.ustring.match(';' .. ts, ';background%-color:'))
and mw.ustring.match(';' .. ts, ';text%-align:') then
return '[[Category:Pages using collapsible list with both background and text-align in titlestyle|' .. skey .. ' ]]'
end
return '[[Category:Pages using collapsible list without both background and text-align in titlestyle|' .. skey .. ' ]]'
end
local function getListItem( data )
if not type( data ) == 'string' then
return ''
000
1:0
Templates used on this page:
- Template:Module other (view source)
- Template:Module rating (view source)
- Template:Module rating/protected (view source)
- Template:Ombox (view source)
- Template:Template for discussion/styles.css (view source)
- Template:Template link (view source)
- Template:Tfm/dated (view source)
- Template:Tl (view source)
- Module:Arguments (view source)
- Module:Collapsible list/doc (view source)
- Module:Effective protection level (view source)
- Module:Message box (view source)
- Module:Message box/configuration (view source)
- Module:Message box/ombox.css (view source)
- Module:Noinclude (view source)
- Module:Unsubst (view source)
- Module:Yesno (view source)
Return to Module:Collapsible list.