-
Notifications
You must be signed in to change notification settings - Fork 18
docs: fern docs #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
docs: fern docs #26
Changes from 17 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
a35629e
docs(fern): scaffold fern infrastructure under docs/fern/
lbliii 5bae4e8
docs(fern-migrate): rename docs/*.md → docs/*.mdx + retire mkdocs
lbliii e7f3c91
docs(fern-migrate): convert MkDocs MD to Fern MDX (194 pages)
lbliii 790bd00
docs(fern-migrate): relocate snippets to docs/fern/snippets/
lbliii d0209eb
docs(fern-migrate): notebook viewer pipeline + 7 MDX wrappers
lbliii 3b94676
docs(fern-migrate): mount nav at docs/fern/versions/latest.yml
lbliii 543b466
docs(fern): switch to NVIDIA global-theme; drop bespoke brand assets
lbliii 520ed0a
docs(fern): replace @/ imports with Fern-native tags for out-of-fern …
lbliii 381e0a9
Merge pull request #25 from NVIDIA-NeMo/lbliii/fern-pr-repo-move
lbliii 99af641
Merge branch 'main' into lbliii/fern-docs-port
lbliii 8a455a0
ci(fern): replace docs workflow with Fern workflows and unbreak builds
lbliii 545bbe8
Merge branch 'main' into lbliii/fern-docs-port
lbliii d163f9c
Merge branch 'main' into lbliii/fern-docs-port
lbliii f978ea3
ci(fern): npm ci before fern check so validate-mdx has @mdx-js/mdx
lbliii fa23c6a
fix(auth): write permissions reference to .mdx and refresh for merged…
lbliii c5f96ce
docs(safe-synthesizer): use literal product name in host-local page
lbliii 40a0028
docs: expand leftover product-name macros to literal values
lbliii cea3be9
docs(fern): render REST API reference natively from OpenAPI
lbliii 190698c
docs(fern): rewrite internal links to canonical Fern URLs
lbliii 3d27f04
docs(fern): configure hidden pages and resolve remaining broken links
lbliii 021809a
docs: inline remaining substitution variables (escaped {{ }} forms)
lbliii 32cdf8c
docs(fern): gate unready features by excluding them from the build
lbliii 3d7c1b8
Merge remote-tracking branch 'origin/main' into lbliii/fern-docs-port
lbliii 7f8060c
docs(fern): automate delinking of references into gated pages
lbliii 23a64d6
docs(fern): add make targets, docs/AGENTS.md, and fix stale MkDocs refs
lbliii 020e6b2
Merge branch 'main' into lbliii/fern-docs-port
lbliii 03eb96c
fix(ci): ruff-format dev MCP tool and refresh permissions reference
lbliii a94b2eb
Merge branch 'main' into lbliii/fern-docs-port
lbliii 6cc7d01
Merge branch 'main' into lbliii/fern-docs-port
lbliii 5c01284
Merge branch 'main' into lbliii/fern-docs-port
lbliii 1a63624
docs(fern): set production custom domain for docs site
lbliii 93cd2ed
docs(fern): gitignore auto-generated ai_examples_override.yml
lbliii 4561ef0
docs(fern): restore Safe Synthesizer section to the build
lbliii 518dbf9
Merge remote-tracking branch 'origin/main' into lbliii/fern-docs-port
lbliii 390a752
Merge remote-tracking branch 'origin/main' into lbliii/fern-docs-port
lbliii c8f6f0c
Merge branch 'main' into lbliii/fern-docs-port
yamini 8ae5b58
docs: resolve CodeRabbit conversion findings (MDX content fixes)
yamini 8d2b15e
ci(fern-docs): harden workflows per review (pin actions, least-priv)
yamini File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # Validates Fern docs configuration on pull requests. | ||
| # See docs/fern/README.md and docs/fern/docs.yml `libraries`. | ||
|
|
||
| name: Fern docs (check) | ||
|
|
||
| on: | ||
| pull_request: | ||
| paths: | ||
| - 'docs/**' | ||
| - '.github/workflows/fern-docs-ci.yaml' | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| check: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v6 | ||
| with: | ||
| node-version: '20' | ||
| cache: 'npm' | ||
| cache-dependency-path: docs/fern/package-lock.json | ||
|
|
||
| - name: Install docs tooling | ||
| working-directory: ./docs/fern | ||
| run: npm ci | ||
|
|
||
| - name: Validate Fern configuration | ||
| working-directory: ./docs/fern | ||
| env: | ||
| FERN_TOKEN: ${{ secrets.DOCS_FERN_TOKEN }} | ||
| run: npm run check | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.