Skip to content

pushldr/MarkdownRemove

Repository files navigation

MarkdownRemove

Install via NuGet NuGet

Install-Package MarkdownRemove

About

  • Small simple C# library to remove markdown from text

  • C# Port of the node.js module remove-markdown licensed under the MIT License. See LICENSE for the full License.

Quick Example

var markdownRemover = new MarkdownRemover(); // To create a markdown remover with default options


var markdownRemover = new MarkdownRemover(delegate(MarkdownRemoverOptions options) // Or to create a markdown remover with customised options
{
    options.UseImgAltText = true;
});

var text = "![Image](/assets/images/sample.png)";
var textWithoutMarkdown = markdownRemover.RemoveMarkdown(text);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages