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 76b1356 commit 5bf964eCopy full SHA for 5bf964e
src/data/serialize.ts
@@ -64,7 +64,8 @@ function latexFix(latex: string) {
64
.replace(/\\lim_/g, '\\lim\\limits_')
65
.replace(/\\int_{ }\^{ }(?=[A-Za-z])/g, '\\int ')
66
.replace(/\\int_{ }\^{ }(?![A-Za-z])/g, '\\int')
67
- .replace(/\\mid_/g, '\\bigg\\rvert_');
+ .replace(/\\mid_/g, '\\bigg\\rvert_')
68
+ .replace(/(=|<|>|\\ne|\\ge|\\le)\^\?/g, '\\stackrel{?}{$1}');
69
}
70
71
function documentToMarkdown(
0 commit comments