aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--BibTeX.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BibTeX.py b/BibTeX.py
index b4d25e8..22b71f6 100644
--- a/BibTeX.py
+++ b/BibTeX.py
@@ -587,7 +587,7 @@ def _unlig_html(m):
def htmlize(s):
"""Turn a TeX string into good-looking HTML."""
s = RE_LONE_AMP.sub(lambda m: "&%s" % m.group(1), s)
- s = RE_LONE_I.sub(lambda m: "i%s%s" % m.group(1), s)
+ s = RE_LONE_I.sub(lambda m: "i%s" % m.group(1), s)
s = RE_ACCENT.sub(_unaccent, s)
s = RE_LIGATURE.sub(_unlig_html, s);
s = RE_TEX_CMD.sub("", s)