terminate table row, if multiple present
This commit is contained in:
parent
51aedb19c3
commit
a8d4d3b191
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ class Formatter(FormatterBase):
|
|||
return ''
|
||||
|
||||
def table_row(self, on, attrs={}, **kw):
|
||||
return ['', '|'][not on]
|
||||
return ['\n', '|'][not on]
|
||||
|
||||
def table_cell(self, on, attrs={}, **kw):
|
||||
return ['|', ''][not on]
|
||||
|
|
Loading…
Reference in a new issue