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
For some reason, italicsAndBold.after listener extensions are working inside code spans. The correctly do not run inside code blocks. Since italicsAndBold doesn't impact code spans, I'm not sure what's going wrong. Fiddle is here: https://jsfiddle.net/s83o24et/11/
The text was updated successfully, but these errors were encountered:
Found the issue. Code spans are not being hashed after parsing. Instead, we're only escaping "magic" markdown chars inside. Since the character + is not magic in markdown, it's not being escaped
Code spans are now hashed after parsing which means extensions
that listen to spanGamut events no longer need to worry about
escaping "custom" magic chars inside code spans.
Closes#464
For some reason, italicsAndBold.after listener extensions are working inside code spans. The correctly do not run inside code blocks. Since italicsAndBold doesn't impact code spans, I'm not sure what's going wrong. Fiddle is here: https://jsfiddle.net/s83o24et/11/
The text was updated successfully, but these errors were encountered: