Skip to content

Instantly share code, notes, and snippets.

How to Convert Markdown to HTML in C#. For more information, please follow link: https://kb.groupdocs.com/conversion/net/how-to-convert-markdown-to-html-in-csharp/
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertMarkdownToHtmlInCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert Markdown to HTML using C#
{
// Remove the watermark in output HTML document by adding license
string licensePath = "GroupDocs.Conversion.lic";
GroupDocs.Conversion.License lic = new GroupDocs.Conversion.License();
lic.SetLicense(licensePath);
// Load the source Markdown file for conversion to HTML
var converter = new GroupDocs.Conversion.Converter("sample.md");
// Set the conversion options for HTML document to customize the output file
MarkupConvertOptions options = new MarkupConvertOptions();
// Convert and save the Markdown in HTML format
converter.Convert("converted.html", options);
Console.WriteLine("Done");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment