Issue
Two documentation partials exist in the tree but are not referenced by the v3 docs manifest (docs/v3/source/index.html.md), so they appear to be dead files. Flagging for confirmation/cleanup.
Context
Found while extracting a structured model from the v3 docs (which walks the manifest's includes: list). These two partials are present on disk but never referenced:
docs/v3/source/includes/api_resources/_route_mappings.erb — the route_mappings resource is no longer in the manifest.
docs/v3/source/includes/upgrade_guide/conceptual_changes/_ports.md — not referenced by the manifest.
Both are present at current main HEAD.
A minor related naming nit (no functional impact): docs/v3/source/includes/resources/spaces/get_assigned_isolation_segment.md.erb is the only spaces partial lacking a leading underscore. The manifest references it like a normal partial and it still renders, so this is cosmetic/consistency only.
Steps to Reproduce
- Open
docs/v3/source/index.html.md and note the includes: manifest list.
- Grep the manifest for
route_mappings and conceptual_changes/ports — neither is referenced.
- Confirm the two files still exist under
docs/v3/source/includes/.
Expected Result
The docs tree contains only partials referenced by the manifest.
Current Result
Two orphaned partials remain in the tree.
Possible Fix
Remove the two orphaned partials. Optionally rename the spaces partial to _get_assigned_isolation_segment.md.erb for consistency. Happy to open a PR if you'd like.
Issue
Two documentation partials exist in the tree but are not referenced by the v3 docs manifest (
docs/v3/source/index.html.md), so they appear to be dead files. Flagging for confirmation/cleanup.Context
Found while extracting a structured model from the v3 docs (which walks the manifest's
includes:list). These two partials are present on disk but never referenced:docs/v3/source/includes/api_resources/_route_mappings.erb— theroute_mappingsresource is no longer in the manifest.docs/v3/source/includes/upgrade_guide/conceptual_changes/_ports.md— not referenced by the manifest.Both are present at current
mainHEAD.A minor related naming nit (no functional impact):
docs/v3/source/includes/resources/spaces/get_assigned_isolation_segment.md.erbis the onlyspacespartial lacking a leading underscore. The manifest references it like a normal partial and it still renders, so this is cosmetic/consistency only.Steps to Reproduce
docs/v3/source/index.html.mdand note theincludes:manifest list.route_mappingsandconceptual_changes/ports— neither is referenced.docs/v3/source/includes/.Expected Result
The docs tree contains only partials referenced by the manifest.
Current Result
Two orphaned partials remain in the tree.
Possible Fix
Remove the two orphaned partials. Optionally rename the
spacespartial to_get_assigned_isolation_segment.md.erbfor consistency. Happy to open a PR if you'd like.