docs: migrate webdocs from Mintlify to fumadocs content format#203
Merged
Conversation
Convert all MDX content from Mintlify components to fumadocs equivalents:
- Callouts: <Note>/<Info>/<Warning>/<Tip>/<Check> -> <Callout type="...">
- Cards: <CardGroup>/<Card icon="..."> -> <Cards>/<Card>
- Accordions: <AccordionGroup>/<Accordion> -> <Accordions>/<Accordion id="...">
- Steps: <Steps>/<Step title="..."> -> numbered headings (### 1. Title)
- Tabs: <Tabs>/<Tab title="..."> -> <Tabs items={[...]}>/<Tab value="...">
- ParamField -> markdown headings with type annotations
- Escape CLI placeholders as HTML entities
Replace central mint.json with per-folder meta.json navigation files.
Rename TROUBLESHOOTING.md to troubleshooting.mdx for slug consistency.
Add MIGRATION.md documenting the conversion and host-app integration steps.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
webdocs/from Mintlify components to fumadocs MDX formatmint.jsonconfig with 13 per-foldermeta.jsonnavigation filesMIGRATION.mddocumenting the conversion and host-app integration stepsComponent mappings
<Note>/<Info>/<Warning>/<Tip>/<Check><Callout type="..."><CardGroup>/<Card icon="..."><Cards>/<Card><AccordionGroup>/<Accordion><Accordions>/<Accordion id="..."><Steps>/<Step title="X">### 1. Xnumbered headings<Tabs>/<Tab title="X"><Tabs items={[...]}>/<Tab value="X"><ParamField>#### \field` (type, required)` headings<Frame>Validation
All 15 key pages verified with Playwright headless browser testing:
This migration covers content only — no hosting application is included. The converted content drops into any fumadocs MDX app by pointing
defineDocs({ dir: 'content/docs' })at this directory.