We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aebd55 commit 0280259Copy full SHA for 0280259
src/render_latex.js
@@ -63,7 +63,7 @@ function escapeIndex(value) {
63
}
64
65
function escapeComplexScripts(string) {
66
- return string.replace(/[^\u0000-\u0600→“”—…←‘’]+/g, m => {
+ return string.replace(/[^\u0000-\u0600→“”…←‘’]+/g, m => {
67
if (/[\u0600-\u06ff]/.test(m)) m = "\\textarab{" + m + "}"
68
else if (/[\u4E00-\u9FA5]/.test(m)) m = "\\cjkfont{" + m + "}"
69
return `$<${m}>$`
0 commit comments