Add newlines to HTML2 and Text writers to improve readability

darcs-hash:20090731184052-82ea9-15abffebe8c99e14e64f3f2ae2b9546a3186c3c2.gz
This commit is contained in:
Richard Darst
2009-07-31 11:40:52 -07:00
parent 572cd73cc0
commit a45f62ddda

View File

@@ -320,7 +320,7 @@ class HTML2(_BaseWriter):
MeetingItems.append("</ol>") MeetingItems.append("</ol>")
inSublist = False inSublist = False
if haveTopic: if haveTopic:
MeetingItems.append("</li>") MeetingItems.append("<br></li>")
item = item item = item
haveTopic = True haveTopic = True
else: else:
@@ -596,6 +596,8 @@ class Text(_BaseWriter):
for m in M.minutes: for m in M.minutes:
item = "* "+m.text(M) item = "* "+m.text(M)
if m.itemtype == "TOPIC": if m.itemtype == "TOPIC":
if haveTopic:
MeetingItems.append("")
item = wrapList(item, 0) item = wrapList(item, 0)
haveTopic = True haveTopic = True
else: else: