浏览代码

Removes dead code

main
Eric Amodio 1年前
父节点
当前提交
0d2ad6bc26
共有 1 个文件被更改,包括 0 次插入10 次删除
  1. +0
    -10
      src/annotations/autolinks.ts

+ 0
- 10
src/annotations/autolinks.ts 查看文件

@ -479,13 +479,3 @@ function ensureCachedRegex(ref: CacheableAutolinkReference, outputFormat: 'html'
return true;
}
function escapeQuotesInLinkTitleMarkdown(s: string) {
// Skip the first and last quotes
return s.replace(/(?!^)".*?(?!$)"/g, match => match.replace(/"/g, '\\"'));
}
function escapeQuotesInLinkTitleHtml(s: string) {
// Skip the first and last quotes
return s.replace(/(?!^)".*?(?!$)"/g, match => match.replace(/"/g, '"'));
}

正在加载...
取消
保存