Fix up some module docs formatting errors.

This commit is contained in:
Michael DeHaan 2013-06-19 22:37:09 -04:00
parent 231d9b101d
commit 3f8aa8aec5
4 changed files with 8 additions and 5 deletions

View file

@ -63,6 +63,8 @@ def latex_ify(text):
def html_ify(text):
# print "DEBUG: text=%s" % text
t = cgi.escape(text)
t = _ITALIC.sub("<em>" + r"\1" + "</em>", t)
t = _BOLD.sub("<b>" + r"\1" + "</b>", t)