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 9212f7a commit f905ae7Copy full SHA for f905ae7
src/Elastic.Markdown/IO/MarkdownFile.cs
@@ -61,15 +61,10 @@ public string? NavigationTitle
61
public string FileName { get; }
62
public string Url => $"{UrlPathPrefix}/{RelativePath.Replace(".md", ".html")}";
63
64
- public int NavigationIndex
65
- {
66
- get { return _navigationIndex; }
67
- set { _navigationIndex = value; }
68
- }
+ public int NavigationIndex { get; set; }
69
70
private bool _instructionsParsed;
71
private DocumentationGroup? _parent;
72
- private int _navigationIndex;
73
74
public MarkdownFile[] YieldParents()
75
{
0 commit comments