merge with 0.5

This commit is contained in:
Georg Brandl 2009-03-09 14:59:04 +01:00
commit 0f3e0ec335
2 changed files with 4 additions and 1 deletions

View File

@ -194,6 +194,8 @@ New features added
Release 0.5.2 (in development) Release 0.5.2 (in development)
============================== ==============================
* Properly escape ``|`` in LaTeX output.
* #71: If a decoding error occurs in source files, print a * #71: If a decoding error occurs in source files, print a
warning and replace the characters by "?". warning and replace the characters by "?".

View File

@ -40,7 +40,8 @@ tex_replacements = [
(u'', ur'-'), (u'', ur'-'),
(u'', ur'\_'), (u'', ur'\_'),
(u'', ur'\textbackslash{}'), (u'', ur'\textbackslash{}'),
(u'', ur'|'), (u'|', ur'\textbar{}'),
(u'', ur'\textbar{}'),
(u'', ur'e'), (u'', ur'e'),
(u'', ur'i'), (u'', ur'i'),
(u'', ur'1'), (u'', ur'1'),