mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
merge with 0.5
This commit is contained in:
commit
0f3e0ec335
2
CHANGES
2
CHANGES
@ -194,6 +194,8 @@ New features added
|
||||
Release 0.5.2 (in development)
|
||||
==============================
|
||||
|
||||
* Properly escape ``|`` in LaTeX output.
|
||||
|
||||
* #71: If a decoding error occurs in source files, print a
|
||||
warning and replace the characters by "?".
|
||||
|
||||
|
@ -40,7 +40,8 @@ tex_replacements = [
|
||||
(u'─', ur'-'),
|
||||
(u'⎽', ur'\_'),
|
||||
(u'╲', ur'\textbackslash{}'),
|
||||
(u'│', ur'|'),
|
||||
(u'|', ur'\textbar{}'),
|
||||
(u'│', ur'\textbar{}'),
|
||||
(u'ℯ', ur'e'),
|
||||
(u'ⅈ', ur'i'),
|
||||
(u'₁', ur'1'),
|
||||
|
Loading…
Reference in New Issue
Block a user