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 0c00b4e commit ccf4ae6Copy full SHA for ccf4ae6
1 file changed
.vitepress/config.mjs
@@ -79,9 +79,9 @@ export default defineConfig({
79
? ({ filePath, frontmatter }) => {
80
if (frontmatter.newEditLink) {
81
//newEditLink defines a frontmatter key you can use to append a path to master
82
- return `https://github.com/mavlink/mavlink-devguide/edit/master/docs/${frontmatter.newEditLink}`;
+ return `https://github.com/mavlink/mavlink-devguide/edit/master/${frontmatter.newEditLink}`;
83
} else {
84
- return `https://github.com/mavlink/mavlink-devguide/edit/master/docs/${filePath}`;
+ return `https://github.com/mavlink/mavlink-devguide/edit/master/${filePath}`;
85
}
86
87
: (c) =>
0 commit comments