(rel: string)
| 1436 | } |
| 1437 | |
| 1438 | function normalizeVaultRelativePath(rel: string): string { |
| 1439 | const normalized = toPosix(path.normalize(rel)).replace(/^(\.\/)+/, '') |
| 1440 | return normalized === '.' ? '' : normalized |
| 1441 | } |
| 1442 | |
| 1443 | function markdownDestination(p: string): string { |
| 1444 | return `<${p.replace(/>/g, '%3E')}>` |
no test coverage detected