-
Notifications
You must be signed in to change notification settings - Fork 862
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
fix: make _tocRel deterministic #9483
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #9483 +/- ##
==========================================
+ Coverage 71.36% 71.37% +0.01%
==========================================
Files 558 558
Lines 24028 24028
Branches 4185 4185
==========================================
+ Hits 17148 17151 +3
+ Misses 5784 5782 -2
+ Partials 1096 1095 -1 ☔ View full report in Codecov by Sentry. |
|
The latest version of Docfx has a breaking change, requiring the renaming of this file. Reference: dotnet/docfx#9483
When both
toc.html.tmpl
andtoc.json.tmpl
appear in template, the output extension is indeterministic. Renamingtoc.html.tmpl
totoc.html.primary.tmpl
ensures we use thehtml
extension.Fixes #9479