local function csv_to_table( csv )
local tab = {}
for row in mw.text.gsplit( csv, '\n') do
table.insert(tab, mw.text.split(row, ','))
end
return tab
end
local function table_to_html( tab, th_first, table_attrib, tr_attrib, th_attrib, td_attrib, content_only )
local htmlrows = {}
for ind, line in ipairs(tab) do
local titlerow = th_first and ind == 1
local opener = titlerow and '<th%s%s>' or '<td%s%s>'
local closer = titlerow and '</th>' or '</td>'
local row_attrib = titlerow and (th_attrib or '') or (td_attrib or '')
mw.log(ind, ' td_attrib', td_attrib)
opener = mw.ustring.format(opener, row_attrib and ' ' or '', row_attrib)
local htmlrow = opener .. table.concat(line, closer .. opener) .. closer
table.insert(htmlrows, mw.ustring.format('<tr%s%s>%s</tr>', tr_attrib and ' ' or '', tr_attrib or '', htmlrow))
end