Skip to content

Commit

Permalink
Merge pull request #724 from DeveloPoel/markdown.cs_findings
Browse files Browse the repository at this point in the history
Made the markdown class not partial and fixed the ToPlainText summary.
  • Loading branch information
xoofx committed Aug 4, 2023
2 parents 053a18c + 8ea0783 commit 012a57d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Markdig/Markdown.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Markdig;
/// <summary>
/// Provides methods for parsing a Markdown string to a syntax tree and converting it to other formats.
/// </summary>
public static partial class Markdown
public static class Markdown
{
public static string Version
{
Expand Down Expand Up @@ -268,7 +268,7 @@ public static MarkdownDocument ToPlainText(string markdown, TextWriter writer, M
}

/// <summary>
/// Converts a Markdown string to HTML.
/// Converts a Markdown string to Plain text by using a <see cref="StringWriter"/> .
/// </summary>
/// <param name="markdown">A Markdown text.</param>
/// <param name="pipeline">The pipeline used for the conversion.</param>
Expand Down

0 comments on commit 012a57d

Please sign in to comment.