We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a3798e commit 6feda7bCopy full SHA for 6feda7b
antd-tools/generator-types/src/parser.ts
@@ -25,7 +25,7 @@ function readLine(input: string) {
25
}
26
27
function splitTableLine(line: string) {
28
- line = line.replace('\\|', 'JOIN');
+ line = line.replace(/\\\|/g, 'JOIN');
29
30
const items = line.split('|').map(item => item.trim().replace('JOIN', '|'));
31
0 commit comments