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
With the latest changes to in-line markup, I have noticed a bug related with nested markup and orphan characters.
Take the following expression:
zoo =and *boo and= bar* and *goo zar*
We end up with verbatim highlight on =and *boo and= and bold on * and * which is wrong since bar* does not start a bold markup.
=and *boo and=
* and *
bar*
This problem is particularly frequent with links like the following:
This is [[https://foobar/foo]] foo/
Which highlights as italic /foobar/foo]] foo/.
/foobar/foo]] foo/
org
foo =and *foo and= bar* and *foo bar*
The correct behavior is to have verbatim highlight on =and *foo and= and bold on *foo bar*.
=and *foo and=
*foo bar*
N/A
No response
Ubuntu 22.04
0.8
The text was updated successfully, but these errors were encountered:
Emacs itself doesn't really know how to handle some of these when link has some spaces:
But I guess spaces are just not a valid char in a link.
Sorry, something went wrong.
I think I managed to fix this issue with PR #431.
These issues should be fixed on latest master.
No branches or pull requests
Describe the bug
With the latest changes to in-line markup, I have noticed a bug related with nested markup and orphan characters.
Take the following expression:
We end up with verbatim highlight on
=and *boo and=
and bold on* and *
which is wrong sincebar*
does not start a bold markup.This problem is particularly frequent with links like the following:
Which highlights as italic
/foobar/foo]] foo/
.Steps to reproduce
org
file.Expected behavior
The correct behavior is to have verbatim highlight on
=and *foo and=
and bold on*foo bar*
.Emacs functionality
N/A
Minimal init.lua
N/A
Screenshots and recordings
No response
OS / Distro
Ubuntu 22.04
Neovim version/commit
0.8
Additional context
No response
The text was updated successfully, but these errors were encountered: