You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is that my copy tag gets mistaken for on image when placing a ! character before the closing tag.
Since it is parsed after Italic it should be parsed before images. If I set it to be before image it gets interpreted as a link.
I don't see what else can be done on my end to fix this.
Here are some screenshots of the behaviour:
The text was updated successfully, but these errors were encountered:
The order in which inline parsers get applied applies to the first character they match. So at the !, all inline parsers would be tried, in order, and since your custom syntax doesn't match there yet, even if it has a higher precedence than images, it won't match yet, but then the image parser will match, and consume the bracket syntax. As such, you may not be able to parse this notation in combination with images using @lezer/markdown, at the moment.
There seems to be a conflict between my custom inline parser and image tags.
This is my code:
This issue is that my copy tag gets mistaken for on image when placing a
!
character before the closing tag.Since it is parsed after Italic it should be parsed before images. If I set it to be before image it gets interpreted as a link.
I don't see what else can be done on my end to fix this.
Here are some screenshots of the behaviour:
The text was updated successfully, but these errors were encountered: