Resolve Issue Where Roadmap Is Always In Breadcrumbs #39
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.
Description
This resolves an issue where
Roadmap
was displayed as the breadcrumb for every documentation article.Cause of Issue
This was occurring due to how docfx generates breadcrumbs. Since the roadmap document was in the
/articles
directory and also existed as a top level navigation item in the roottoc.yml
, then the top navigation for Roadmap would be highlighted and which means the breadcrumb would default to that.Solution
By moving the roadmap document to it's own directory, similar to the
/foundation/index.md
this resolves the issue of the breadcrumb being incorrect for every article.