bachpc commited on
Commit
c58ad4a
1 Parent(s): 0566252

Test HTML output

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -317,7 +317,7 @@ def cells_to_html(cells):
317
  current_row = this_row
318
  if cell['header']:
319
  cell_tag = 'th'
320
- row = ET.SubElement(table, 'thead')
321
  else:
322
  cell_tag = 'td'
323
  row = ET.SubElement(table, 'tr')
 
317
  current_row = this_row
318
  if cell['header']:
319
  cell_tag = 'th'
320
+ row = ET.SubElement(table, 'tr')
321
  else:
322
  cell_tag = 'td'
323
  row = ET.SubElement(table, 'tr')