We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c28a15 commit dc4e5d6Copy full SHA for dc4e5d6
docs/app/_llms/rules/markdown-utils.ts
@@ -2,7 +2,7 @@
2
* @description `|` 기호를 `\|`로 변환합니다.
3
*/
4
export function escapeCell(s: string): string {
5
- return s.replace(/\|/g, "\\|").replace(/\n/g, " ");
+ return s.replace(/\\/g, "\\\\").replace(/\|/g, "\\|").replace(/\n/g, " ");
6
}
7
8
/**
0 commit comments