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 45feb69 commit 0cf0cd3Copy full SHA for 0cf0cd3
src/Elastic.Markdown/Myst/Directives/ImageBlock.cs
@@ -115,7 +115,7 @@ private void ExtractImageUrl(ParserContext context)
115
if (context.DocumentationFileLookup(context.MarkdownSourcePath) is MarkdownFile currentMarkdown)
116
{
117
if (!file.Directory!.FullName.StartsWith(currentMarkdown.ScopeDirectory.FullName + Path.DirectorySeparatorChar))
118
- this.EmitHint($"Image '{imageUrl}' is referenced out of table of contents scope '{currentMarkdown.ScopeDirectory}'.");
+ this.EmitWarning($"Image '{imageUrl}' is referenced out of table of contents scope '{currentMarkdown.ScopeDirectory}'.");
119
}
120
121
0 commit comments