How to parse markdown through C #

I want to analyze a markdown document and make it formatted html, how can I do this, please? Should I do this from scratch, or can any API be based? so thanks.

+4
source share
2 answers

and these blog posts may be helpful: Introducing MarkdownSharp , Markdown, One Year Later , and Markdown.NET Announcement . considers

+5
source

There is a google Markdownsharp code project.

Project Description:

An open source C # implementation of the Markdown processor, as shown in stack overflow. This port is mainly based on the original Perl 1.0.1 and Perl 1.0.2b8 Markdown implementations, with bits and chunks apparently being much better supported by PHP Markdown built into it. There are several modifications to Qaru (which are all configurable, and all by default are the default). I would like to make sure that this version remains within the flashy distance of the “specification” Markdown, such as ...

+2
source

All Articles