20 lines
335 B

using System;
using System.Collections.Generic;
using System.Text;
namespace MarkdownSharp
{
internal class Demo
{
public static string ToHtml(string markdown)
{
var processor = new Markdown();
var html = processor.Transform(markdown);
return html;
}
}
}