-
-
Notifications
You must be signed in to change notification settings - Fork 801
Add visual highlighting for web math navigation #20372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
RyanMcCleary
wants to merge
36
commits into
nvaccess:master
Choose a base branch
from
RyanMcCleary:highlight-math
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+454
−37
Draft
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
10cfd8f
Wire up math navigation to visual highlighting
RyanMcCleary a55dc3a
Implement highlight for web IA2
RyanMcCleary a0cd4f3
Debug logging
RyanMcCleary 302b494
More debug logging
RyanMcCleary 1b70876
Store copy of mathML, generating IDs where not already present
RyanMcCleary 946697a
Fixed math highlight settings
RyanMcCleary c971fe1
Change highlight color to orange
RyanMcCleary ce5ed03
Clean up types and move some classmethods into standalone functions
RyanMcCleary 26b22cf
Refactor nav node mapping
RyanMcCleary 83a159a
Remove lookup by original ID
RyanMcCleary 043b31f
Remove lookup by original ID
RyanMcCleary 9c51e9c
Add more test cases
RyanMcCleary fc92759
Merge branch 'highlight-math' of github.com:RyanMcCleary/nvda into hi…
RyanMcCleary 7a6c02e
Pre-commit auto-fix
pre-commit-ci[bot] 86b691f
Fold math context into browse mode context
RyanMcCleary 9f94dad
Merge branch 'highlight-math' of github.com:RyanMcCleary/nvda into hi…
RyanMcCleary 2f8d2b4
Pre-commit auto-fix
pre-commit-ci[bot] f4a1617
Changelog entry and user docs update
RyanMcCleary 2401f41
Merge branch 'highlight-math' of github.com:RyanMcCleary/nvda into hi…
RyanMcCleary ae267e9
Clean up log messages and docstrings
RyanMcCleary 4871123
Update source/mathPres/MathCAT/MathCAT.py
RyanMcCleary 25d1d66
Update source/mathPres/__init__.py
RyanMcCleary 78684a9
Update source/mathPres/__init__.py
RyanMcCleary b58914f
Update source/mathPres/__init__.py
RyanMcCleary 5fcd252
Fix copyright header
RyanMcCleary 2f24dd3
Merge branch 'highlight-math' of github.com:RyanMcCleary/nvda into hi…
RyanMcCleary 88022c4
Merge remote-tracking branch 'upstream/master' into highlight-math
RyanMcCleary 3a97a79
Fix vision handler extension point
RyanMcCleary 5ba601d
Move 'import vision' to top level
RyanMcCleary 61f5629
Remove unnecessary try/except, add justification for local import
RyanMcCleary 2bc0545
Cleanup highlight update / clear methods
RyanMcCleary 2543636
Cleanup highlight update / clear methods; refactor supportsInteractio…
RyanMcCleary f31bc0d
Merge branch 'highlight-math' of github.com:RyanMcCleary/nvda into hi…
RyanMcCleary 19336ad
Merge remote-tracking branch 'upstream/master' into highlight-math
RyanMcCleary 71bacfe
Merge remote-tracking branch 'upstream/master' into highlight-math
RyanMcCleary d11a100
Use a stack for _iterMathMlElements
RyanMcCleary File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can these imports be moved out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The other imports should definitely be moved out, but it seems to me like it would be a good idea to keep this import local. I've added a comment with my reasoning for that. I'm still happy to move it out if you think that's best though.