We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
_
in latex, we use \b to detect command boundary. However, _ does not match \b.
\b
For example if we type \top_x, the \top symbol will not be prettified.
\top_x
\top
Any suggestion on how to modify the regex?
The text was updated successfully, but these errors were encountered:
I use something like this which works:
"ugly": "\\\\nabla\\s*", "pretty": "∇", "post": "_|\\^|\\b"
Fundamentally modifying word boundary may be a cleaner way. But I don't know how to do that.
Sorry, something went wrong.
No branches or pull requests
in latex, we use
\b
to detect command boundary. However,_
does not match\b
.For example if we type
\top_x
, the\top
symbol will not be prettified.Any suggestion on how to modify the regex?
The text was updated successfully, but these errors were encountered: