From a8d4d3b1910564971aaa177f3902ce9b17401c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Sun, 16 Sep 2012 19:46:24 +0200 Subject: [PATCH] terminate table row, if multiple present --- text_dokuwiki.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text_dokuwiki.py b/text_dokuwiki.py index 2d9018e..4a0bec1 100644 --- a/text_dokuwiki.py +++ b/text_dokuwiki.py @@ -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]