Module:Tree chart/data: Difference between revisions

From Roses, Tulips, & Liberty
Content added Content deleted
No edit summary
(rm unnecessary variable and avoid unnecessary escaping)
Line 3: Line 3:
local DOT = '1px dotted black'
local DOT = '1px dotted black'


return {
local cells = {
['!'] = {
['!'] = {
b = {},
b = {},
Line 15: Line 15:
{ style = { ['border-bottom'] = DSH, width = '1em', height = '1em' } } }
{ style = { ['border-bottom'] = DSH, width = '1em', height = '1em' } } }
},
},
['\''] = {
["'"] = {
b = { { style = { width = '1em', height = '1em' } } },
b = { { style = { width = '1em', height = '1em' } } },
t = { { style = { ['border-right'] = SLD, ['border-bottom'] = SLD, width = '1em', height = '1em' } },
t = { { style = { ['border-right'] = SLD, ['border-bottom'] = SLD, width = '1em', height = '1em' } },
Line 359: Line 359:
}
}
}
}

return cells