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 e935f61 commit 15eeaa5Copy full SHA for 15eeaa5
src/Elastic.Markdown/DocumentationGenerator.cs
@@ -184,6 +184,9 @@ private void HintUnusedSubstitutionKeys()
184
var keysNotInUse = definedKeys.Except(inUse)
185
// versions keys are injected
186
.Where(key => !key.StartsWith("version."))
187
+ // product keys are injected
188
+ .Where(key => !key.StartsWith("product."))
189
+ .Where(key => !key.StartsWith('.'))
190
// reserving context namespace
191
.Where(key => !key.StartsWith("context."))
192
.ToArray();
0 commit comments