ソースを参照

Fixes missing line breaks in hovers

main
Eric Amodio 2年前
コミット
2a5e8ab86f
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/system/string.ts

+ 1
- 1
src/system/string.ts ファイルの表示

@ -109,7 +109,7 @@ export function escapeMarkdown(s: string, options: { quoted?: boolean } = {}): s
if (!options.quoted) return s;
// Keep under the same block-quote but with line breaks
return s.replace(markdownQuotedRegex, '\t\n> ');
return s.replace(markdownQuotedRegex, '\t\\\n> ');
}
export function escapeRegex(s: string) {

読み込み中…
キャンセル
保存