diff --git a/text_dokuwiki.py b/text_dokuwiki.py index d74b0f1..ed58084 100644 --- a/text_dokuwiki.py +++ b/text_dokuwiki.py @@ -251,7 +251,7 @@ class Formatter(FormatterBase): def comment(self, text): # real comments (lines with two hash marks) if text[0:2] == '##': - return "/* %s */" % text[2:] + return "/* %s */\n" % text[2:] # Some kind of Processing Instruction # http://moinmo.in/HelpOnProcessingInstructions