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 bdf282c commit 4a85e08Copy full SHA for 4a85e08
scripts/docs.ts
@@ -182,7 +182,8 @@ function buildRepoDocsLinks(outputDir: string): Map<string, string> {
182
markdownFiles.forEach((filePath) => {
183
const relativePath = path
184
.relative(outputDir, filePath)
185
- .replace(/\.md$/, "");
+ .replace(/\.md$/, "")
186
+ .replace(/\\/g, "/");
187
const apiName = path.basename(relativePath);
188
189
if (apiName !== "index") {
0 commit comments