We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8569c6 commit a54803eCopy full SHA for a54803e
1 file changed
mathics/doc/doc.py
@@ -255,12 +255,20 @@ def repl_list(match):
255
(" ", r"$\ge$"),
256
(" ", r"$\le$"),
257
(" ", 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"),
+
+ ("ç", r"\c{c}"),
+ ("é", r"\'e"),
+ ("ê", r"\^e"),
+ ("ñ", r"\~n"),
+ ("∫", 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"),
272
],
273
)
274
0 commit comments