Skip to content

Commit a54803e

Browse files
committed
Revert some funny character translations...
Until I can figure why TeX doc messes up.
1 parent b8569c6 commit a54803e

1 file changed

Lines changed: 14 additions & 6 deletions

File tree

mathics/doc/doc.py

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -255,12 +255,20 @@ def repl_list(match):
255255
(" ", r"$\ge$"),
256256
(" ", r"$\le$"),
257257
(" ", r"$\ne$"),
258-
("\u00e7", r"\c{c}"),
259-
("\u00e9", r"\'e"),
260-
("\u00ea", r"\^e"),
261-
("\00f1", r"\~n"),
262-
("\u222b", r"\int"),
263-
("\uf74c", r"d"),
258+
259+
("ç", r"\c{c}"),
260+
("é", r"\'e"),
261+
("ê", r"\^e"),
262+
("ñ", r"\~n"),
263+
("∫", r"\int"),
264+
("", r"d"),
265+
# Redo above as something like:
266+
# ("\u00e7", r"\c{c}"),
267+
# ("\u00e9", r"\'e"),
268+
# ("\u00ea", r"\^e"),
269+
# ("\00f1", r"\~n"),
270+
# ("\u222b", r"\int"),
271+
# ("\uf74c", r"d"),
264272
],
265273
)
266274

0 commit comments

Comments
 (0)