From c03cb0fea54db533da1476697f79ab615b1eddbc Mon Sep 17 00:00:00 2001 From: Richard Darst Date: Fri, 31 Jul 2009 18:40:52 +0000 Subject: Add newlines to HTML2 and Text writers to improve readability darcs-hash:20090731184052-82ea9-15abffebe8c99e14e64f3f2ae2b9546a3186c3c2.gz --- 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("") inSublist = False if haveTopic: - MeetingItems.append("") + MeetingItems.append("
") 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: -- cgit v0.9.1