Skip to content

Commit

Permalink
Fix apos conversions in code
Browse files Browse the repository at this point in the history
  • Loading branch information
javamind committed Nov 25, 2020
1 parent 3e67840 commit 03ab513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/highlight-code.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function extHighlightCode(_a) {
.replace(/&amp;lt<span class="token punctuation">;<\/span>/g, '&lt;')
.replace(/&amp;gt<span class="token punctuation">;<\/span>/g, '&gt;')
.replace(/&amp;quot<span class="token punctuation">;<\/span>/g, '&quot;')
.replace(/&amp;pos<span class="token punctuation">;<\/span>/g, '&pos;')
.replace(/&amp;apos<span class="token punctuation">;<\/span>/g, '&apos;')
.replace(/<span class=\"token operator\">&amp;<\/span>quot<span class=\"token punctuation\">;<\/span>/g, '&quot;')
.replace(/<span class=\"token operator\">&amp;<\/span>lt<span class=\"token punctuation\">;<\/span>/g, '&lt;')
.replace(/<span class=\"token operator\">&amp;<\/span>apos<span class=\"token punctuation\">;<\/span>/g, '&apos;')
Expand Down

0 comments on commit 03ab513

Please sign in to comment.