shixl

Results 1 issues of shixl

[turndown的escape功能](https://github.com/mixmark-io/turndown#escaping-markdown-characters)会对很多字符进行转义 ``` js var escapes = [ [/\\/g, '\\\\'], [/\*/g, '\\*'], [/^-/g, '\\-'], [/^\+ /g, '\\+ '], [/^(=+)/g, '\\$1'], [/^(#{1,6}) /g, '\\$1 '], [/`/g, '\\`'], [/^~~~/g, '\\~~~'], [/\[/g, '\\['], [/\]/g,...