We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f092a90 commit faa53ebCopy full SHA for faa53eb
src/Docfx.Build/TableOfContents/TocHelper.cs
@@ -9,13 +9,13 @@
9
10
namespace Docfx.Build.TableOfContents;
11
12
-static class TocHelper
+public static class TocHelper
13
{
14
private static readonly YamlDeserializerWithFallback _deserializer =
15
YamlDeserializerWithFallback.Create<List<TocItemViewModel>>()
16
.WithFallback<TocItemViewModel>();
17
18
- public static List<FileModel> ResolveToc(ImmutableList<FileModel> models)
+ internal static List<FileModel> ResolveToc(ImmutableList<FileModel> models)
19
20
var tocCache = new Dictionary<string, TocItemInfo>(FilePathComparer.OSPlatformSensitiveStringComparer);
21
var nonReferencedTocModels = new List<FileModel>();
0 commit comments