diff options
| author | Nick Mathewson <nickm@torproject.org> | 2004-06-16 18:51:18 +0000 |
|---|---|---|
| committer | Nick Mathewson <nickm@torproject.org> | 2004-06-16 18:51:18 +0000 |
| commit | cfb3548f2bc7586dc5db6f7fae4206437df5c3a2 (patch) | |
| tree | 7a0e11381be8daf04e897564b31eb7845839e7d4 /BibTeX.py | |
| parent | 25d62c145a309d3e3d136d6181d971c263850f7c (diff) | |
| download | anonbib-cfb3548f2bc7586dc5db6f7fae4206437df5c3a2.tar.gz | |
Fix bug in handling accented lowercase i
svn:r94
Diffstat (limited to 'BibTeX.py')
| -rw-r--r-- | BibTeX.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
