View on GitHub

MdXaml

Markdown for WPF - alternate version of Markdown.Xaml

Transform markdow to flowdocument

// using MdXaml;
// using System.Windows.Documents;

Markdown engine = new Markdown();

string markdownTxt = System.IO.File.ReadAllText("example.md");

FlowDocument document = engine.Transform(markdownTxt);