Markdig 0.30.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Markdig --version 0.30.0
NuGet\Install-Package Markdig -Version 0.30.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Markdig" Version="0.30.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Markdig --version 0.30.0
#r "nuget: Markdig, 0.30.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Markdig as a Cake Addin
#addin nuget:?package=Markdig&version=0.30.0

// Install Markdig as a Cake Tool
#tool nuget:?package=Markdig&version=0.30.0

Markdig Build Status Coverage Status NuGet Donate

<img align="right" width="160px" height="160px" src="img/markdig.png">

Markdig is a fast, powerful, CommonMark compliant, extensible Markdown processor for .NET.

NOTE: The repository is under construction. There will be a dedicated website and proper documentation at some point!

You can try Markdig online and compare it to other implementations on babelmark3

Features

If you are looking for support for an old .NET Framework 3.5 or 4.0, you can download Markdig 0.18.3.

Third Party Extensions

Documentation

The repository is under construction. There will be a dedicated website and proper documentation at some point!

While there is not yet a dedicated documentation, you can find from the specs documentation how to use these extensions.

In the meantime, you can have a "behind the scene" article about Markdig in my blog post "Implementing a Markdown Engine for .NET"

Download

Markdig is available as a NuGet package: NuGet

Also Markdig.Signed NuGet package provides signed assemblies.

Usage

The main entry point for the API is the Markdig.Markdown class:

By default, without any options, Markdig is using the plain CommonMark parser:

var result = Markdown.ToHtml("This is a text with some *emphasis*");
Console.WriteLine(result);   // prints: <p>This is a text with some <em>emphasis</em></p>

In order to activate most of all advanced extensions (except Emoji, SoftLine as HardLine, Bootstrap, YAML Front Matter, JiraLinks and SmartyPants)

// Configure the pipeline with all advanced extensions active
var pipeline = new MarkdownPipelineBuilder().UseAdvancedExtensions().Build();
var result = Markdown.ToHtml("This is a text with some *emphasis*", pipeline);

Try it online!

You can have a look at the MarkdownExtensions that describes all actionable extensions (by modifying the MarkdownPipeline)

Build

In order to build Markdig, you need to install .NET 6.0

License

This software is released under the BSD-Clause 2 license.

Benchmarking

This is an early preview of the benchmarking against various implementations:

C implementations:

  • cmark (version: 0.25.0): Reference C implementation of CommonMark, no support for extensions
  • Moonshine (version: : popular C Markdown processor

.NET implementations:

Analysis of the results:

  • Markdig is roughly x100 times faster than MarkdownSharp, 30x times faster than docfx
  • Among the best in CPU, Extremely competitive and often faster than other implementations (not feature wise equivalent)
  • 15% to 30% less allocations and GC pressure

Because Marked.NET, MarkdownSharp and DocAsCode.MarkdownLite are way too slow, they are not included in the following charts:

BenchMark CPU Time

BenchMark Memory

Performance for x86:

BenchmarkDotNet-Dev=v0.9.7.0+
OS=Microsoft Windows NT 6.2.9200.0
Processor=Intel(R) Core(TM) i7-4770 CPU 3.40GHz, ProcessorCount=8
Frequency=3319351 ticks, Resolution=301.2637 ns, Timer=TSC
HostCLR=MS.NET 4.0.30319.42000, Arch=32-bit RELEASE
JitModules=clrjit-v4.6.1080.0

Type=Program  Mode=SingleRun  LaunchCount=2
WarmupCount=2  TargetCount=10

                     Method |      Median |    StdDev |Scaled |  Gen 0 | Gen 1|    Gen 2|Bytes Allocated/Op |
--------------------------- |------------ |---------- |------ | ------ |------|---------|------------------ |
                    Markdig |   5.5316 ms | 0.0372 ms |  0.71 |   56.00| 21.00|    49.00|      1,285,917.31 |
     CommonMark.NET(master) |   4.7035 ms | 0.0422 ms |  0.60 |  113.00|  7.00|    49.00|      1,502,404.60 |
CommonMark.NET(pipe_tables) |   5.6164 ms | 0.0298 ms |  0.72 |  111.00| 56.00|    49.00|      1,863,128.13 |
               MarkdownDeep |   7.8193 ms | 0.0334 ms |  1.00 |  120.00| 56.00|    49.00|      1,884,854.85 |
                      cmark |   4.2698 ms | 0.1526 ms |  0.55 |       -|     -|        -|                NA |
                  Moonshine |   6.0929 ms | 0.1053 ms |  1.28 |       -|     -|        -|                NA |
                 Marked.NET | 207.3169 ms | 5.2628 ms | 26.51 |    0.00|  0.00|     0.00|    303,125,228.65 |
              MarkdownSharp | 675.0185 ms | 2.8447 ms | 86.32 |   40.00| 27.00|    41.00|      2,413,394.17 |
Microsoft DocfxMarkdownLite | 166.3357 ms | 0.4529 ms | 21.27 |4,452.00|948.00|11,167.00|    180,218,359.60 |

Performance for x64:

BenchmarkDotNet-Dev=v0.9.6.0+
OS=Microsoft Windows NT 6.2.9200.0
Processor=Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz, ProcessorCount=8
Frequency=3319351 ticks, Resolution=301.2637 ns, Timer=TSC
HostCLR=MS.NET 4.0.30319.42000, Arch=64-bit RELEASE [RyuJIT]
JitModules=clrjit-v4.6.1080.0

Type=Program  Mode=SingleRun  LaunchCount=2
WarmupCount=2  TargetCount=10

               Method |    Median |    StdDev |  Gen 0 |  Gen 1 | Gen 2 | Bytes Allocated/Op |
--------------------- |---------- |---------- |------- |------- |------ |------------------- |
          TestMarkdig | 5.5276 ms | 0.0402 ms | 109.00 |  96.00 | 84.00 |       1,537,027.66 |
    TestCommonMarkNet | 4.4661 ms | 0.1190 ms | 157.00 |  96.00 | 84.00 |       1,747,432.06 |
 TestCommonMarkNetNew | 5.3151 ms | 0.0815 ms | 229.00 | 168.00 | 84.00 |       2,323,922.97 |
     TestMarkdownDeep | 7.4076 ms | 0.0617 ms | 318.00 | 186.00 | 84.00 |       2,576,728.69 |

If you are using this library and find it useful for your project, please consider a donation for it!

Donate

Credits

Thanks to the fantastic work done by John Mac Farlane for the CommonMark specs and all the people involved in making Markdown a better standard!

This project would not have been possible without this huge foundation.

Thanks also to the project BenchmarkDotNet that makes benchmarking so easy to setup!

Some decoding part (e.g HTML EntityHelper.cs) have been re-used from CommonMark.NET

Thanks to the work done by @clarkd on the JIRA Link extension (https://github.com/clarkd/MarkdigJiraLinker), now included with this project!

Author

Alexandre MUTEL aka xoofx

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.
  • .NETFramework 4.5.2

  • .NETStandard 2.0

  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.

NuGet packages (296)

Showing the top 5 NuGet packages that depend on Markdig:

Package Downloads
ppy.osu.Framework

A 2D application/game framework written with rhythm games in mind.

Westwind.AspNetCore.Markdown

This library provides Markdown support for ASP.NET Core applications: * Markdown TagHelper - embed static markdown text from files, urls or bind model data * Markdown Page Handler Middleware to render Markdown files in your site * Markdown Parsing Support via Markdown.Parse() and Markdown.ParseHtmlString() * Markdown Parsing from Files via Markdown.ParseFromFile() and .ParseFromFileAsync() * Markdown Parsing from URL via Markdown.ParseFromUrl() and .ParseFromUrlAsync() * Supports basic HTML Sanitation * TagHelper supports White Space Normalization * Customization of Markdown Processing Options For similar features in System.Web based classic ASP.NET apps see `Westwind.Web.Markdown`.

FenixAlliance.ACL.Dependencies

Application Component for the Alliance Business Suite.

Octostache

Variable substitution syntax used in Octopus Deploy.

Piranha The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Core package for Piranha CMS for .NET Core

GitHub repositories (127)

Showing the top 5 popular GitHub repositories that depend on Markdig:

Repository Stars
DevToys-app/DevToys
A Swiss Army knife for developers.
dotnet/maui
.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
Version Downloads Last updated
0.37.0 12,807 4/9/2024
0.36.2 86,668 3/14/2024
0.36.1 241 3/14/2024
0.36.0 5,723 3/14/2024
0.35.0 138,493 2/17/2024
0.34.0 386,629 12/14/2023
0.33.0 877,307 8/30/2023
0.32.0 207,289 8/4/2023
0.31.0 1,375,249 2/27/2023
0.30.4 1,559,446 9/27/2022
0.30.3 512,484 8/12/2022
0.30.2 1,168,340 4/23/2022
0.30.1 6,103 4/22/2022
0.30.0 52,745 4/21/2022
0.29.0 2,647 4/20/2022
0.28.1 187,364 3/27/2022
0.28.0 183,125 3/11/2022
0.27.0 465,032 1/23/2022
0.26.0 1,648,994 8/27/2021
0.25.0 762,236 6/10/2021
0.24.0 1,525,766 3/20/2021
0.23.0 1,513,658 1/16/2021
0.22.1 518,290 12/2/2020
0.22.0 2,099,023 10/5/2020
0.21.1 558,686 8/17/2020
0.21.0 8,652 8/17/2020
0.20.0 950,059 4/18/2020
0.18.3 364,089 3/8/2020
0.18.2 1,891 3/8/2020
0.18.1 475,811 1/21/2020
0.18.0 629,376 10/24/2019
0.17.1 681,039 7/4/2019
0.17.0 432,492 5/11/2019
0.16.0 515,145 2/25/2019
0.15.7 143,670 1/11/2019
0.15.6 21,783 12/28/2018
0.15.5 65,527 12/11/2018
0.15.4 607,032 10/7/2018
0.15.3 18,701 9/26/2018
0.15.2 221,610 8/21/2018
0.15.1 86,458 7/10/2018
0.15.0 581,895 4/4/2018
0.14.9 316,807 1/15/2018
0.14.8 169,031 12/5/2017
0.14.7 32,625 11/25/2017
0.14.6 64,178 11/21/2017
0.14.5 10,024 11/18/2017
0.14.4 3,875 11/18/2017
0.14.3 37,389 11/1/2017
0.14.2 3,942 11/1/2017
0.14.1 7,884 10/27/2017
0.14.0 3,886 10/27/2017
0.13.4 37,687 10/17/2017
0.13.3 73,506 8/30/2017
0.13.2 14,372 8/29/2017
0.13.1 143,320 8/21/2017
0.13.0 9,912 8/3/2017
0.12.4 27,272 7/31/2017
0.12.3 41,993 6/26/2017
0.12.2 7,663 6/18/2017
0.12.1 81,411 5/29/2017
0.12.0 3,988 5/28/2017
0.11.0 46,233 5/8/2017
0.10.7 26,746 4/1/2017
0.10.6 118,526 2/24/2017
0.10.5 60,067 2/14/2017
0.10.4 453,042 12/12/2016
0.10.3 49,208 11/29/2016
0.10.2 3,826 11/26/2016
0.10.1 5,975 11/19/2016
0.10.0 14,376 10/16/2016
0.9.1 4,768 10/11/2016
0.9.0 4,692 10/11/2016
0.8.5 7,177 9/23/2016
0.8.4 4,000 9/22/2016
0.8.3 4,373 9/22/2016
0.8.2 4,379 9/22/2016
0.8.1 4,300 9/21/2016
0.8.0 4,284 9/19/2016
0.7.5 4,191 9/18/2016
0.7.4 23,565 7/30/2016
0.7.3 5,440 7/23/2016
0.7.2 7,818 7/20/2016
0.7.1 6,397 6/30/2016
0.7.0 4,278 6/27/2016
0.6.2 4,045 6/25/2016
0.6.1 4,044 6/24/2016
0.6.0 3,961 6/24/2016
0.5.12 3,940 6/23/2016
0.5.11 3,952 6/23/2016
0.5.10 3,994 6/22/2016
0.5.9 33,010 6/21/2016
0.5.8 4,062 6/21/2016
0.5.7 4,074 6/20/2016
0.5.6 4,006 6/20/2016
0.5.5 4,043 6/20/2016
0.5.4 3,950 6/19/2016
0.5.3 3,982 6/19/2016
0.5.2 4,011 6/17/2016
0.5.1 4,166 6/15/2016
0.5.0 4,030 6/15/2016
0.4.0 4,187 6/13/2016
0.3.4 3,977 6/10/2016
0.3.3 4,041 6/10/2016
0.3.2 3,936 6/9/2016
0.3.1 3,987 6/9/2016
0.3.0 3,941 6/8/2016
0.2.1 3,994 6/6/2016
0.2.0 3,980 5/30/2016
0.1.1 3,989 5/30/2016
0.1.0 6,761 5/25/2016