chore: split SDK navigation into standalone $ref file#3773
Merged
Conversation
Use mdxify's new --nav-output flag to write the SDK pages array to python-sdk-pages.json, referenced from docs.json via Mintlify's $ref feature. This keeps docs.json stable across SDK doc regenerations.
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.
The SDK reference navigation was ~420 lines of inline JSON in docs.json that got rewritten on every mdxify run, making docs.json diffs noisy and hard to review. This extracts it into
python-sdk-pages.jsonusing Mintlify's$reffeature, so docs.json stays stable and the bot only touches the standalone file.Depends on mdxify v0.2.39 which added
--nav-output(zzstoatzz/mdxify#39).