From b979f2083bd51a69b8f59850b4be1728570b5fb0 Mon Sep 17 00:00:00 2001 From: milde Date: Sat, 28 Sep 2013 08:51:39 +0000 Subject: [PATCH] html4-strict: Fix depart_table. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@7722 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- sandbox/html4strict/html4strict/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sandbox/html4strict/html4strict/__init__.py b/sandbox/html4strict/html4strict/__init__.py index 0627f33a1..a4f2418ac 100644 --- a/sandbox/html4strict/html4strict/__init__.py +++ b/sandbox/html4strict/html4strict/__init__.py @@ -429,6 +429,8 @@ class HTMLTranslator(html4css1.HTMLTranslator): tag = self.starttag(node, 'table', CLASS=' '.join(classes)) self.body.append(tag) + def depart_table(self, node): + self.body.append('\n') # no hard-coded vertical alignment in table body:: -- 2.11.4.GIT