Module:Sandbox/User:Microbrews/Variants: Difference between revisions
no edit summary
Microbrews (talk | contribs) No edit summary |
Microbrews (talk | contribs) No edit summary |
||
(5 intermediate revisions by the same user not shown) | |||
Line 33:
function p.variants_header(args)
local smw_data = get_table_info(args)
local main_variant = args[1]:gsub('%(', '%%%('):gsub('%)', '%%%)') -- it's going to be a pattern, so escape the parentheses
local contents
if smw_data then
Line 40:
local name = entry['page']
local variant_name = name:gsub(main_variant, '', 1)
variant_name = variant_name:gsub('^%s*(.-)%s*$', '%1') -- trim whitespace
table.insert(formatted, main_variant)▼
variant_name = variant_name:gsub('%((.-)%)$', '%1') -- trim parentheses
variant_name = variant_name:gsub("^%l", string.upper) -- capitalize first letter
end
contents = table.concat(formatted, ' • ')
Line 110 ⟶ 113:
:tag('td')
:css{ ['border-left'] = 'none' }
:wikitext('[['..entry[
:done()
:tag('td')
|