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 71a329b commit 2340fd5Copy full SHA for 2340fd5
web/src/components/EnhancedMarkdown.astro
@@ -17,7 +17,7 @@ function convertMediaWikiLinks(text: string): string {
17
return text.replace(
18
/\[\[([^|\]#]+)(?:#([^\]]+))?(?:\|([^\]]+))?\]\]/g,
19
(_, link, hash, text) => {
20
- const url = `/${link}${hash ? `#${hash}` : ''}`;
+ const url = `/reference/${link}${hash ? `#${hash}` : ''}`;
21
return `[${text || link}](${url})`;
22
}
23
);
0 commit comments