* src/docgen/PdfDoc.py (write_text): Close <br/> tag.
svn: r8214
This commit is contained in:
parent
833b8d88ea
commit
59c2affe2d
@ -1,4 +1,5 @@
|
||||
2007-02-22 Alex Roitman <shura@gramps-project.org>
|
||||
* src/docgen/PdfDoc.py (write_text): Close <br/> tag.
|
||||
* src/GrampsDb/_GrampsBSDDB.py (reindex_reference_map): Typo.
|
||||
|
||||
2007-02-19 Brian Matherly <brian@gramps-project.org>
|
||||
|
@ -405,7 +405,7 @@ class PdfDoc(BaseDoc.BaseDoc):
|
||||
text = text.replace('>','>')
|
||||
text = text.replace('<super>',self.super)
|
||||
text = text.replace('</super>','</super></font>')
|
||||
self.text = self.text + text.replace('\n','<br>')
|
||||
self.text = self.text + text.replace('\n','<br/>')
|
||||
|
||||
def start_page(self):
|
||||
x = self.get_usable_width()*cm
|
||||
|
Loading…
Reference in New Issue
Block a user