Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/writers.py
diff options
context:
space:
mode:
authorRichard Darst <rkd@zgib.net>2009-07-31 18:40:52 (GMT)
committer Richard Darst <rkd@zgib.net>2009-07-31 18:40:52 (GMT)
commitc03cb0fea54db533da1476697f79ab615b1eddbc (patch)
treeec0a25a40f6f3aab069f0c7e5e3fdc8876ed9810 /writers.py
parentd71f46398059cb408869a59dfb22e6e48965856d (diff)
Add newlines to HTML2 and Text writers to improve readability
darcs-hash:20090731184052-82ea9-15abffebe8c99e14e64f3f2ae2b9546a3186c3c2.gz
Diffstat (limited to 'writers.py')
-rw-r--r--writers.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/writers.py b/writers.py
index c8eef43..e40c037 100644
--- a/writers.py
+++ b/writers.py
@@ -320,7 +320,7 @@ class HTML2(_BaseWriter):
MeetingItems.append("</ol>")
inSublist = False
if haveTopic:
- MeetingItems.append("</li>")
+ MeetingItems.append("<br></li>")
item = item
haveTopic = True
else:
@@ -596,6 +596,8 @@ class Text(_BaseWriter):
for m in M.minutes:
item = "* "+m.text(M)
if m.itemtype == "TOPIC":
+ if haveTopic:
+ MeetingItems.append("")
item = wrapList(item, 0)
haveTopic = True
else: