![]() |
VOOZH | about |
dotnet add package Markdig.Signed --version 1.3.2
NuGet\Install-Package Markdig.Signed -Version 1.3.2
<PackageReference Include="Markdig.Signed" Version="1.3.2" />
<PackageVersion Include="Markdig.Signed" Version="1.3.2" />Directory.Packages.props
<PackageReference Include="Markdig.Signed" />Project file
paket add Markdig.Signed --version 1.3.2
#r "nuget: Markdig.Signed, 1.3.2"
#:package Markdig.Signed@1.3.2
#addin nuget:?package=Markdig.Signed&version=1.3.2Install as a Cake Addin
#tool nuget:?package=Markdig.Signed&version=1.3.2Install as a Cake Tool
<img align="right" width="160px" height="160px" src="img/markdig.png">
Markdig is a fast, powerful, CommonMark compliant, extensible Markdown processor for .NET.
Documentation: https://xoofx.github.io/markdig
You can try Markdig online and compare it to other implementations on babelmark3
# of a headers with @)[!Note], [!Tip], [!Important], [!Warning], [!Caution]~~,~^++==http:// or https:// or ftp:// or mailto: or www.xxx.yyya. b. and roman bullet (i, ii...etc.)""..."" (inspired by this CommonMark discussion )::: for generating a proper <div>...</div> instead (inspired by this CommonMark discussion )$$ for block and $ for inline math (inspired from this CommonMark discussion)mermaid and nomnoml diagrams)0.20.0+, Markdig is compatible only with NETStandard 2.0, NETStandard 2.1, NETCoreApp 2.1 and NETCoreApp 3.1.If you are looking for support for an old .NET Framework 3.5 or 4.0, you can download Markdig 0.18.3.
markdig.wpfNeo.Markdig.XamlMarkdig.SyntaxHighlightingMarkdown.ColorCodeWebStoating.Markdig.PrismMarkdig.Extensions.ScriptCsFull documentation is available at https://xoofx.github.io/markdig — covering getting started, usage, all extensions, and the developer guide for writing custom parsers and renderers.
For detailed specs and corner cases of each extension, see the .
For a "behind the scene" article about Markdig, see the blog post "Implementing a Markdown Engine for .NET".
Markdig is available as a NuGet package: 👁 NuGet
Also Markdig.Signed NuGet package provides signed assemblies.
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);
You can have a look at the MarkdownExtensions that describes all actionable extensions (by modifying the MarkdownPipeline)
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. For detailed contributing guidelines, please see .
In order to build Markdig, you need to install .NET 10.0
This software is released under the BSD-Clause 2 license.
Supports this project with a monthly donation and help me continue improving it. [Become a sponsor]
<img src="https://github.com/lilith.png?size=200" width="64px;" style="border-radius: 50%" alt="lilith"/> Lilith River, author of Imageflow Server, an easy on-demand image editing, optimization, and delivery server
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, now included with this project!
Alexandre MUTEL aka xoofx
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net461 net461 was computed. net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on Markdig.Signed:
| Package | Downloads |
|---|---|
|
Microsoft.PowerShell.Commands.Utility
Runtime for hosting PowerShell |
|
|
Microsoft.PowerShell.MarkdownRender
MarkdownRenderer for PowerShell |
|
|
SIL.Core
SIL.Core provides general utilities for language software. It is the base library for all Palaso libraries. |
|
|
Soneta.Business
Składnik programu Soneta. Program obsługi firmy: kadry-płace, księgowość, handel, magazyn, CRM, BI ... |
|
|
Soneta.Types
Składnik programu Soneta. Program obsługi firmy: kadry-płace, księgowość, handel, magazyn, CRM, BI ... |
Showing the top 20 popular GitHub repositories that depend on Markdig.Signed:
| Repository | Stars |
|---|---|
|
PowerShell/PowerShell
PowerShell for every system!
|
|
|
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
|
|
|
JustArchiNET/ArchiSteamFarm
C# application with primary purpose of farming Steam cards from multiple accounts simultaneously.
|
|
|
microsoft/fluentui-blazor
Microsoft Fluent UI Blazor components library. For use with ASP.NET Core Blazor applications
|
|
|
stevencohn/OneMore
A OneNote add-in with simple, yet powerful and useful features
|
|
|
dotnet/interactive
.NET Interactive combines the power of .NET with many other languages to create notebooks, REPLs, and embedded coding experiences. Share code, explore data, write, and learn across your apps in ways you couldn't before.
|
|
|
dotnet/extensions
This repository contains a suite of libraries that provide facilities commonly needed when creating production-ready applications.
|
|
|
github/VisualStudio
GitHub Extension for Visual Studio
|
|
|
Achuan-2/SlideSCI
PPT插件,支持素材库、AI助手、一键添加图片标题,复制粘贴位置、一键图片对齐、一键插入Markdown(加粗、超链接等行内样式、代码块、LaTeX等块级样式)、便捷导出图片!
|
|
|
OrchardCMS/Orchard
Orchard is a free, open source, community-focused Content Management System built on the ASP.NET MVC platform. Check out the next generation of this software built on ASP.NET Core: https://github.com/OrchardCMS/OrchardCore
|
|
|
EWSoftware/SHFB
Sandcastle Help File Builder (SHFB). A standalone GUI, Visual Studio integration package, and MSBuild tasks providing full configuration and extensibility for building help files with the Sandcastle tools.
|
|
|
chocolatey/ChocolateyGUI
A delicious GUI for Chocolatey
|
|
|
CollapseLauncher/Collapse
An Advanced Launcher for miHoYo/HoYoverse Games
|
|
|
NuGet/NuGetGallery
NuGet Gallery is a package repository that powers https://www.nuget.org. Use this repo for reporting NuGet.org issues.
|
|
|
PowerShell/platyPS
Write PowerShell External Help in Markdown
|
|
|
microsoft/qsharp-compiler
Q# compiler, command line tool, and Q# language server
|
|
|
microsoft/RTVS
R Tools for Visual Studio.
|
|
|
sungaila/PDFtoImage
A .NET library to render PDF files into images.
|
|
|
anoyetta/ACT.Hojoring
Advanced Combat Tracker の FFXIV向けプラグインです。トリガ、TTSの拡張、HUDの拡張など。
|
|
|
mhutch/MonoDevelop.MSBuildEditor
Improved MSBuild editing support
|
| Version | Downloads | Last Updated |
|---|---|---|
| 1.3.2 | 0 | 6/18/2026 |
| 1.3.1 | 688 | 6/17/2026 |
| 1.3.0 | 3,683 | 6/13/2026 |
| 1.2.0 | 36,272 | 5/12/2026 |
| 1.1.3 | 30,205 | 4/20/2026 |
| 1.1.2 | 33,643 | 3/27/2026 |
| 1.1.1 | 57,015 | 3/4/2026 |
| 1.1.0 | 4,818 | 3/1/2026 |
| 1.0.1 | 1,584 | 2/28/2026 |
| 1.0.0 | 30,837 | 2/22/2026 |
| 1.0.0-preview.1 | 89 | 2/21/2026 |
| 0.45.0 | 25,428 | 2/10/2026 |
| 0.44.0 | 351,269 | 11/25/2025 |
| 0.43.0 | 235,219 | 10/21/2025 |
| 0.42.0 | 178,662 | 9/11/2025 |
| 0.41.3 | 169,812 | 6/24/2025 |
| 0.41.2 | 101,711 | 6/5/2025 |
| 0.41.1 | 157,844 | 4/28/2025 |
| 0.41.0 | 98,621 | 4/15/2025 |
| 0.40.0 | 509,480 | 1/10/2025 |