Files
SubMiner/docs-site/.vitepress/theme/status-line.ts
T

5 lines
168 B
TypeScript

export function formatStatusLineFilePath(routePath: string): string {
if (routePath === '/') return 'index.md';
return `${routePath.replace(/^\/|\/$/g, '')}.md`;
}