We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Markdown provides backslash escapes for the following characters:
\ backslash ` backtick * asterisk _ underscore {} curly braces [] square brackets () parentheses # hash mark + plus sign - minus sign (hyphen) . dot ! exclamation mark
这段代码会导致使用Tex格式的数学公式解析失败:
// amWiki\js\amWiki.docs.js //增加"\"符转义功能 content = content.replace(/\\(.)/g, function (m, s1) { return '&#' + s1.charCodeAt(0) + ';'; });
The text was updated successfully, but these errors were encountered:
Fixed TevinLi#123 转义导致Tex公式异常的问题
6e59a39
Tex数学公式中如果涉及转义,仍然需要自行转义,如:
\\
\\\\
\nabla_i
\nabla\_i
Sorry, something went wrong.
No branches or pull requests
Markdown provides backslash escapes for the following characters:
这段代码会导致使用Tex格式的数学公式解析失败:
The text was updated successfully, but these errors were encountered: