C#/WPF 项目的 Markdown (MarkdownSharp)

发布于 2024-09-15 04:57:15 字数 272 浏览 9 评论 0原文

我做了一些发现,发现有一个项目 markdown Sharp 被堆栈溢出使用?

开源 C# 实现 Markdown 处理器,如上所示 堆栈溢出。

所以无论如何,我下载了它。但我该如何使用它?如果可能的话有任何代码示例或教程吗?没有任何东西可以让我开始进入那个谷歌代码网站。

i did some finding and found theres a project markdown sharp which is used by stack overflow?

Open source C# implementation of
Markdown processor, as featured on
Stack Overflow.

so anyway, i downloaded it. but how do i use it? if possible any code samples or tutorials? theres none to get me started in that google code site.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

树深时见影 2024-09-22 04:57:20

啊。我找到了答案。

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

文档: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# 中我想知道它叫什么。

ah. i found the answer.

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

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) { ... } 

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文