aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--subprojects/docs/src/plugins/remarkPosix2Windows.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/subprojects/docs/src/plugins/remarkPosix2Windows.ts b/subprojects/docs/src/plugins/remarkPosix2Windows.ts
index 66baca30..784802f2 100644
--- a/subprojects/docs/src/plugins/remarkPosix2Windows.ts
+++ b/subprojects/docs/src/plugins/remarkPosix2Windows.ts
@@ -68,7 +68,10 @@ function createTabItem(
68 68
69function transformNode(node: Code): MdxJsxFlowElement[] { 69function transformNode(node: Code): MdxJsxFlowElement[] {
70 const posixCode = node.value; 70 const posixCode = node.value;
71 const windowsCode = posixCode.replaceAll(/(?<=^\w*)\.\//gm, '.\\'); 71 const windowsCode = posixCode.replaceAll(
72 /(^\w*)\.\//gm,
73 (_substring, prefix: string) => `${prefix}.\\`,
74 );
72 return [ 75 return [
73 { 76 {
74 type: 'mdxJsxFlowElement', 77 type: 'mdxJsxFlowElement',