且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

C#/WPF项目的Markdown(MarkdownSharp)

更新时间:2022-02-10 09:58:23

ah.我找到了答案.

ah. i found the answer.

Markdown markdown = new Markdown();
markdown.Transform(txtEditor.Text);

docs:Markdown.cs

docs: Markdown.cs

/// <summary>
/// Transforms the provided Markdown-formatted text to HTML;  
/// see http://en.wikipedia.org/wiki/Markdown
/// </summary>
...
public string Transform(string text) { ... } 

我通过阅读内联文档发现了这一点.在php中,网络将其称为phpDoc,但是在C#中,我想知道它叫什么.

i found out abt this reading the inline docs. in php, web call it phpDoc but in C# i wonder whats it called.