好吧,我到处都在搜索,但是在Google或Textile.net Codeplex上都没有文档,也没有关于功能的代码注释。因此,我只想发布一个问题,以便像我这样的人以及不知道如何使用Textile.net的其他人都可以参考本文。

如何使用Textile.net?

请参考C#中的答案。

最佳答案

这是我得到的一个例子:

string input = "This _text_ is going to be *formatted* using %{color=#f00;}Textile.NET%.";
string result = TextileFormatter.FormatString(input);
Console.WriteLine(result);

关于c# - 如何使用Textile.net,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2219750/

10-09 17:06