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
turndown的escape功能会对很多字符进行转义
var escapes = [ [/\\/g, '\\\\'], [/\*/g, '\\*'], [/^-/g, '\\-'], [/^\+ /g, '\\+ '], [/^(=+)/g, '\\$1'], [/^(#{1,6}) /g, '\\$1 '], [/`/g, '\\`'], [/^~~~/g, '\\~~~'], [/\[/g, '\\['], [/\]/g, '\\]'], [/^>/g, '\\>'], [/_/g, '\\_'], [/^(\d+)\. /g, '$1\\. '] ]
在实际使用过程中,还是需要对一些字符关闭转义功能的,比如"_ -"等。
The text was updated successfully, but these errors were encountered:
請給出一些使用場景,不然很難決定要不要支持這樣高級的功能。
Sorry, something went wrong.
No branches or pull requests
turndown的escape功能会对很多字符进行转义
在实际使用过程中,还是需要对一些字符关闭转义功能的,比如"_ -"等。
The text was updated successfully, but these errors were encountered: