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 a5d550f commit 7514dc8Copy full SHA for 7514dc8
src/Elastic.Markdown/IO/MarkdownFile.cs
@@ -133,7 +133,7 @@ private void ReadDocumentInstructions(MarkdownDocument document)
133
134
// set title on yaml front matter manually.
135
// frontmatter gets passed around as page information throughout
136
- YamlFrontMatter.Title = TitleRaw;
+ YamlFrontMatter.Title = Title;
137
138
NavigationTitle = YamlFrontMatter.NavigationTitle;
139
if (!string.IsNullOrEmpty(NavigationTitle))
@@ -156,7 +156,7 @@ private void ReadDocumentInstructions(MarkdownDocument document)
156
}
157
158
else
159
- YamlFrontMatter = new YamlFrontMatter { Title = TitleRaw };
+ YamlFrontMatter = new YamlFrontMatter { Title = Title };
160
161
if (string.IsNullOrEmpty(TitleRaw))
162
{
0 commit comments