refactor: remove redundant qualifier

This commit is contained in:
Oliver Booth 2024-11-07 14:49:13 +00:00
parent 8f35f448b6
commit 4cbcb6c592
Signed by: oliverbooth
GPG Key ID: 2A862C3F46178E8E

View File

@ -33,7 +33,7 @@ public sealed class MarkdownFormatter : IFormatter
return false; return false;
var pipeline = _serviceProvider.GetService<MarkdownPipeline>(); var pipeline = _serviceProvider.GetService<MarkdownPipeline>();
formattingInfo.Write(Markdig.Markdown.ToHtml(value, pipeline)); formattingInfo.Write(Markdown.ToHtml(value, pipeline));
return true; return true;
} }
} }