在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):hey-red/Markdown开源软件地址(OpenSource Url):https://github.com/hey-red/Markdown开源编程语言(OpenSource Language):C# 100.0%开源软件介绍(OpenSource Introduction):Markdig instead.This is legacy project. UseMarkdown for C#Open source C# implementation of Markdown processor, as featured on Stack Overflow. This port is based heavily on the original Perl 1.0.1 and Perl 1.0.2b8 implementations of Markdown, with bits and pieces of the apparently much better maintained PHP Markdown folded into it. There are a few Stack Overflow specific modifications (which are all configurable, and all off by default). I'd like to ensure that this version stays within shouting distance of the Markdown "specification", such as it is... Installvia NuGet:
Usageusing HeyRed.MarkdownSharp;
// Create new markdown instance
Markdown mark = new Markdown();
// Run parser
string text = mark.Transform(text); Optionsvar options = new MarkdownOptions
{
AutoHyperlink = true,
AutoNewlines = true,
LinkEmails = true,
QuoteSingleLine = true,
StrictBoldItalic = true
}
Markdown mark = new Markdown(options);
mark.Transform(text); See more options and docs in MarkdownOptions Extensionsusing HeyRed.MarkdownSharp;
using YourMarkdownExtension.Extension;
Markdown mark = new Markdown();
mark.AddExtension(new Extension());
mark.Transform(text); To create your own extensions you need to implement Markdown SyntaxMarkdown: Syntax Daring Fireball License |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论