Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e040f4e

Browse files
authoredMar 20, 2021
Merge pull request #2 from davidsun0/master
Remove identifier check for LaTeX commands
2 parents 2dfdd63 + be569c4 commit e040f4e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ accidentalrebel: Made a pull request. https://github.com/code-relay-io/ipython/p
44

55
# Task # 2 - Double check if newly generated `latex_symbols.py` is complete and are working in IPython.
66

7+
# Task # 2
8+
9+
Investigate why tools/gen_latex_symbols.py fails to decode \U1d4c1 mathematical script small l in latex_symbols.jl
10+
711
Remember your job is to make *incremental* progress, break the task into smaller tasks, or finish something in 15 minutes, then pass it along to the next contributor.
812
No responsibility, only fun.
913

‎tools/gen_latex_symbols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_ident(i):
5555
assert test_ident("α")
5656
assert not test_ident('‴')
5757

58-
valid_idents = [line for line in idents if test_ident(line[1])]
58+
valid_idents = idents
5959

6060
# Write the `latex_symbols.py` module in the cwd
6161

0 commit comments

Comments
 (0)
Please sign in to comment.