From ec26ec232f2b3114f79269f8802febeecb997e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Tue, 8 Feb 2022 23:54:38 +0100 Subject: [PATCH] add newline after header --- PyTeX/format/pytex_formatter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PyTeX/format/pytex_formatter.py b/PyTeX/format/pytex_formatter.py index cb5ef09..1d9267f 100644 --- a/PyTeX/format/pytex_formatter.py +++ b/PyTeX/format/pytex_formatter.py @@ -122,6 +122,7 @@ class PyTeXFormatter(FormatterIF, ABC): [ '%' * 80, self.header.format(**kwargs), # TODO: add standard keywords here - '%' * 80 + '%' * 80, + '' ] )