From 4cbcb6c5924d8f56fd41505a8d0a630d5e6fb164 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 7 Nov 2024 14:49:13 +0000 Subject: [PATCH] refactor: remove redundant qualifier --- OliverBooth.Extensions.SmartFormat/MarkdownFormatter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OliverBooth.Extensions.SmartFormat/MarkdownFormatter.cs b/OliverBooth.Extensions.SmartFormat/MarkdownFormatter.cs index 2f38c96..2a2a447 100644 --- a/OliverBooth.Extensions.SmartFormat/MarkdownFormatter.cs +++ b/OliverBooth.Extensions.SmartFormat/MarkdownFormatter.cs @@ -33,7 +33,7 @@ public sealed class MarkdownFormatter : IFormatter return false; var pipeline = _serviceProvider.GetService(); - formattingInfo.Write(Markdig.Markdown.ToHtml(value, pipeline)); + formattingInfo.Write(Markdown.ToHtml(value, pipeline)); return true; } }