Content deleted Content added
debug |
pseudo-ternary operator doesn't work with "and nil" |
||
Line 11:
local function concatstrings(s)
local r = table.concat(s, '')
return r
end
local function concatstyles(s)
local r =
if not isblank(v) then r = r .. v .. ';' end
end
if isblank(r) then return nil end
return r
end
|