From 9c6d5ea86bc18b5f1ed331df98b9223b1a84b09f Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Thu, 13 May 2010 18:45:46 +0000 Subject: [PATCH] 3970: Append space to paragraph leader in ascii docgen svn: r15408 --- src/plugins/docgen/AsciiDoc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/docgen/AsciiDoc.py b/src/plugins/docgen/AsciiDoc.py index 518cea7ca..366025be2 100644 --- a/src/plugins/docgen/AsciiDoc.py +++ b/src/plugins/docgen/AsciiDoc.py @@ -236,6 +236,7 @@ class AsciiDoc(BaseDoc,TextDoc): # Then add leader and eat up the beginning of the first line pad. # Do not reformat if preformatted notes if not self.__note_format: + self.leader += ' ' start_at = regular_indent + min(len(self.leader)+first_indent,0) this_text = reformat_para(self.text,regular_indent,right,fmt, right_pad)