From 8ea07838343d2b3eb7c31c20bad9e1dca686463a Mon Sep 17 00:00:00 2001 From: developoel Date: Tue, 18 Jul 2023 14:09:19 +0200 Subject: [PATCH] Made the markdown class not partial and fixed the ToPlainText summary. --- src/Markdig/Markdown.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Markdig/Markdown.cs b/src/Markdig/Markdown.cs index 98670f3f5..a1e4661fa 100644 --- a/src/Markdig/Markdown.cs +++ b/src/Markdig/Markdown.cs @@ -17,7 +17,7 @@ namespace Markdig; /// /// Provides methods for parsing a Markdown string to a syntax tree and converting it to other formats. /// -public static partial class Markdown +public static class Markdown { public static string Version { @@ -268,7 +268,7 @@ public static MarkdownDocument ToPlainText(string markdown, TextWriter writer, M } /// - /// Converts a Markdown string to HTML. + /// Converts a Markdown string to Plain text by using a . /// /// A Markdown text. /// The pipeline used for the conversion.