Skip to content

Commit 96b1fb7

Browse files
Fix broken links in MDX documentation files
Removed incorrect /docs/ prefix and .md extensions from internal links in MDX files: - plugin-editor.mdx: Fixed /docs/concepts/plugins → /concepts/plugins - plugin-kanban.mdx: Fixed /docs/concepts/plugins → /concepts/plugins - plugin-markdown.mdx: Fixed /api → /reference/api, /docs/concepts/plugins → /concepts/plugins - plugin-markdown.mdx: Fixed CONTRIBUTING.md → GitHub URL - plugin-object.mdx: Fixed /docs/ prefixes and removed .md extensions - navigation-menu.mdx: Fixed example hrefs from /docs/intro → /intro, etc. All MDX files now use correct fumadocs link format without /docs/ prefix. Co-authored-by: xuyushun441-sys <255036401+xuyushun441-sys@users.noreply.github.com>
1 parent bb5fe3f commit 96b1fb7

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

docs/components/basic/navigation-menu.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,17 @@ The Navigation Menu component provides an accessible menu for site navigation.
5050
{
5151
label: 'Introduction',
5252
description: 'Learn the basics',
53-
href: '/docs/intro'
53+
href: '/intro'
5454
},
5555
{
5656
label: 'Installation',
5757
description: 'Install the package',
58-
href: '/docs/install'
58+
href: '/install'
5959
},
6060
{
6161
label: 'Quick Start',
6262
description: 'Build your first app',
63-
href: '/docs/quick-start'
63+
href: '/quick-start'
6464
}
6565
]
6666
}

docs/plugins/plugin-editor.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,6 @@ const editorSchema: CodeEditorSchema = {
178178

179179
## Related Documentation
180180

181-
- [Plugin System Overview](/docs/concepts/plugins)
181+
- [Plugin System Overview](/concepts/plugins)
182182
- [Lazy-Loaded Plugins Architecture](../concepts/lazy-loading)
183183
- [Package README](https://github.com/objectstack-ai/objectui/tree/main/packages/plugin-editor)

docs/plugins/plugin-kanban.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,6 @@ const kanbanSchema: KanbanSchema = {
422422

423423
## Related Documentation
424424

425-
- [Plugin System Overview](/docs/concepts/plugins)
425+
- [Plugin System Overview](/concepts/plugins)
426426
- [Lazy-Loaded Plugins Architecture](../concepts/lazy-loading)
427427
- [Package README](https://github.com/objectstack-ai/objectui/tree/main/packages/plugin-kanban)

docs/plugins/plugin-markdown.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ npm install our-package
189189
2. Configure your settings
190190
3. Start building!
191191
192-
For more information, see the [API Reference](/api).
192+
For more information, see the [API Reference](/reference/api).
193193
`,
194194
className: 'prose prose-lg max-w-none'
195195
}
@@ -230,7 +230,7 @@ app.run()
230230
231231
## Contributing
232232
233-
Contributions are welcome! Please read our [contributing guidelines](CONTRIBUTING.md).
233+
Contributions are welcome! Please read our [contributing guidelines](https://github.com/objectstack-ai/objectui/blob/main/CONTRIBUTING.md).
234234
235235
## License
236236
@@ -376,6 +376,6 @@ const markdownSchema: MarkdownSchema = {
376376

377377
## Related Documentation
378378

379-
- [Plugin System Overview](/docs/concepts/plugins)
379+
- [Plugin System Overview](/concepts/plugins)
380380
- [Lazy-Loaded Plugins Architecture](../concepts/lazy-loading)
381381
- [Package README](https://github.com/objectstack-ai/objectui/tree/main/packages/plugin-markdown)

docs/plugins/plugin-object.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ const dataSource = new ObjectQLDataSource({
539539

540540
## Related Documentation
541541

542-
- [ObjectQL Integration](/docs/ecosystem/objectql.md)
543-
- [Data Sources](/docs/concepts/data-source.md)
544-
- [Plugin System Overview](/docs/concepts/plugins)
542+
- [ObjectQL Integration](/ecosystem/objectql)
543+
- [Data Sources](/concepts/data-source)
544+
- [Plugin System Overview](/concepts/plugins)
545545
- [Package README](https://github.com/objectstack-ai/objectui/tree/main/packages/plugin-object)

0 commit comments

Comments
 (0)