aboutsummaryrefslogtreecommitdiff
path: root/source/export.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/export.py')
-rw-r--r--source/export.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/export.py b/source/export.py
index 95b56b6b..d1d3a794 100644
--- a/source/export.py
+++ b/source/export.py
@@ -61,7 +61,8 @@ htmlheader = """<!DOCTYPE html>
.author{text-decoration:none;display:block;float:right;margin-left:2em;font-size:small}
.content{margin:1.00em 1.00em}
</style>
-</head>"""
+</head>
+<body>"""
htmlfooter = '\n<hr />\n<p>This software is under GPLv3 license. You are welcome to copy, modify or' + \
' redistribute the source code according to the' + \
bgstack15