aboutsummaryrefslogtreecommitdiff
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 66939c4..f3ea0e3 100644
--- a/wiki2html.py
+++ b/wiki2html.py
@@ -203,7 +203,7 @@ class HtmlWikiMarkup (WikiMarkup):
203 return '<pre>' + string + '</pre>' 203 return '<pre>' + string + '</pre>'
204 204
205 def str_ind(self, elt): 205 def str_ind(self, elt):
206 return ("&nbsp;" * 2 * elt['level']) + self.format(elt['content']) 206 return ("<dl><dd>" * elt['level']) + self.format(elt['content']) + "</dd></dl>" * elt['level']
207 207
208 def format(self, elt): 208 def format(self, elt):
209 if elt['type'] == 'TEXT': 209 if elt['type'] == 'TEXT':

Return to:

Send suggestions and report system problems to the System administrator.