diff --git a/items.py b/items.py index 19ff1a5..7318166 100644 --- a/items.py +++ b/items.py @@ -166,6 +166,8 @@ class Info(GenericItem): itemtype = 'INFO' html2_template = ("""%(starthtml)s%(line)s%(endhtml)s """ """(%(nick)s, %(time)s)""") + rst_template = """%(startrst)s%(line)s%(endrst)s (%(rstref)s_)""" + text_template = """%(starttext)s%(line)s%(endtext)s (%(nick)s, %(time)s)""" class Idea(GenericItem): itemtype = 'IDEA' class Agreed(GenericItem): diff --git a/writers.py b/writers.py index 6b95b52..f7c3a31 100644 --- a/writers.py +++ b/writers.py @@ -465,6 +465,8 @@ class ReST(_BaseWriter): for m in M.minutes: item = "* "+m.rst(M) if m.itemtype == "TOPIC": + if haveTopic: + MeetingItems.append("") item = wrapList(item, 0) haveTopic = True else: