changeset 10006:9c142ed9c405

rst2man: separate inline blocks from previous paragraphs
author Christian Ebert <blacktrash@gmx.net>
date Fri, 04 Dec 2009 12:48:17 +0100
parents 68964567e406
children 9945a39d171f
files doc/rst2man.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/doc/rst2man.py	Mon Nov 30 21:54:34 2009 +0100
+++ b/doc/rst2man.py	Fri Dec 04 12:48:17 2009 +0100
@@ -763,6 +763,7 @@
     def visit_line_block(self, node):
         self._line_block += 1
         if self._line_block == 1:
+            self.body.append('.sp\n')
             self.body.append('.nf\n')
         else:
             self.body.append('.in +2\n')