887
edits
Dicemonger (talk | contribs) mNo edit summary |
Dicemonger (talk | contribs) mNo edit summary |
||
Line 3: | Line 3: | ||
function p.begin(frame) | function p.begin(frame) | ||
local cols = getCols(frame) | local cols = getCols(frame) | ||
return "<div style=\"column-count:" | return "<div style=\"column-count:" .. cols .. "; column-width:" .. getWidth(cols) .. "; column-gap:40px; column-rule: 2px solid #d6d6d6;\">" | ||
end | end | ||
function p.div(frame) | function p.div(frame) | ||
local cols = getCols(frame) | local cols = getCols(frame) | ||
return "</div><div style=\"column-count:" | return "</div><div style=\"column-count:" .. cols .. "; column-width:" .. getWidth(cols) .. "; column-gap:40px; column-rule: 2px solid #d6d6d6;\">" | ||
end | end | ||