summaryrefslogtreecommitdiff
path: root/wiki2html.py
diff options
context:
space:
mode:
Diffstat (limited to 'wiki2html.py')
-rw-r--r--wiki2html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiki2html.py b/wiki2html.py
index faab18b..63e1ec3 100644
--- a/wiki2html.py
+++ b/wiki2html.py
@@ -155,7 +155,7 @@ class HtmlWikiMarkup (WikiMarkup):
return "<b>" + self.concat(elt[1]) + "</b>"
def str_hdr(self, elt):
- level = elt[1]
+ level = elt[1] + 1
if level > 4:
level = 4
return "<h%s>%s</h%s>" % (level, self.format(elt[2]), level)

Return to:

Send suggestions and report system problems to the System administrator.