ckeditor5
ckeditor5 copied to clipboard
Markdown: Only escape special characters where necessary
The characters * _ < [ ] \ always get escaped even when they don't need to be.
Example
Paste the following in the editor here then open Source view.
Input
These stay unchanged
~ ! @ # $ % ^ & ( ) + { } | : " > ? - = ; ' , . /
These get escaped unnecessarily
_ < [ ] \ *
Output
These stay unchanged
~ ! @ # $ % ^ & ( ) + { } | : " > ? - = ; ' , . /
These get escaped unnecessarily
\_ \< \[ \] \\ \*
Oh this is soooo annoying
There has been no activity on this issue for the past year. We've marked it as stale and will close it in 30 days. We understand it may still be relevant, so if you're interested in the solution, leave a comment or reaction under this issue.
Still annoying.