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 ''
|
return ''
|
||||||
|
|
||||||
def table_row(self, on, attrs={}, **kw):
|
def table_row(self, on, attrs={}, **kw):
|
||||||
return ['', '|'][not on]
|
return ['\n', '|'][not on]
|
||||||
|
|
||||||
def table_cell(self, on, attrs={}, **kw):
|
def table_cell(self, on, attrs={}, **kw):
|
||||||
return ['|', ''][not on]
|
return ['|', ''][not on]
|
||||||
|
|
Loading…
Reference in a new issue