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
Fix unescaping of HTML characters <> in CodeHilite.
Previously, we'd unescape both `&gt;` and `>` to the same string because we were running the & => & replacement first. By changing the order of this replacement, we now convert: `&gt; >` => `> >` as expected. Fixes#988.
0 commit comments