get("#517") -- mergeTexts -- assumes tbl has two columns function asciiTable(tbl) local c1, c2 = {}, {} for i = 1, #tbl do c1[i] = tbl[i][1] c2[i] = tbl[i][2] end return mergeTexts(c1, c2) end