Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

GroupDocs.Markdown for .NET Downloads

Nuget Nuget

GroupDocs.Markdown for .NET is a document processing API that enables you to export PDF, Word, Excel, and other formats to Markdown for seamless integration with the generative AI ecosystem.


Features

  • Export multiple document formats: Convert popular file types (PDF, DOCX, XLSX, EPUB, and more) to Markdown.
  • Advanced Markdown formatting: Accurately export headings, paragraphs, lists, tables, links, images, blockquotes, and code blocks.
  • Flexible image handling: Export images separately or embed them directly into the Markdown file.
  • Local processing: No cloud or internet connection required. All processing happens securely on your machine.
  • Intuitive API design: Simple, developer-friendly API created with ease of use in mind.
  • Cross-platform support: Works on Windows and Linux with both .NET and .NET Framework assemblies included in the NuGet package.

Supported File Types

GroupDocs.Markdown for .NET supports a broad set of common enterprise and ebook formats. The full list of supported extensions:

  • PDF
    • pdf
  • Spreadsheets
    • .xls, .xlsx, .xlsb, .xlsm, .xlt, .xltx, .xltm, .xlam, .csv, .tsv, .ods, .ots, .fods, .numbers, .sxc
  • Word / Rich Text
    • .doc, .docx, .dot, .dotm, .dotx, .docm, .rtf, .odt, .ott
  • Ebooks
    • .azw3, .mobi, .epub
  • Text / Markup / Help
    • .chm, .xml, .txt

Usage

One-line conversion

Convert a document to Markdown in a single call:

string markdown = MarkdownConverter.ToMarkdown("business-plan.pdf");
MarkdownConverter.ToFile("business-plan.pdf", "business-plan.md");

Convert with options

Control headings, page selection, and front matter:

var options = new ConvertOptions
{
    HeadingLevelOffset = 1,           // shift all headings down one level
    PageNumbers = new[] { 1, 2, 3 }, // convert only first three pages
    IncludeFrontMatter = true         // prepend YAML metadata
};
string markdown = MarkdownConverter.ToMarkdown("report.docx", options);

Save images to a folder

Export images as separate files instead of embedding them:

var options = new ConvertOptions
{
    ImageExportStrategy = new ExportImagesToFileSystemStrategy("images/")
    {
        ImagesRelativePath = "images/"  // ![](images/img-001.png) in output
    }
};
MarkdownConverter.ToFile("report.docx", "report.md", options);

Inspect document metadata

Get page count, title, and author without converting:

DocumentInfo info = MarkdownConverter.GetInfo("report.docx");
Console.WriteLine($"Format: {info.FileFormat}, Pages: {info.PageCount}");
Console.WriteLine($"Title: {info.Title}, Author: {info.Author}");

Async conversion

All methods have async counterparts with cancellation support:

string md = await MarkdownConverter.ToMarkdownAsync("large-report.pdf");
await MarkdownConverter.ToFileAsync("spreadsheet.xlsx", "output.md");

Requirements

  • .NET 6.0+, .NET 8.0+, .NET 10.0+ (Windows or Linux)
  • .NET Framework 4.6.2+ (Windows)

Learn more

Support & feedback

For questions or technical assistance, please use our Free Support Forum — we’ll be happy to help.



Direct Download

Icons

GroupDocs.Markdown for .NET 26.3 (DLLs)

This page contains a ZIP archive with the DLLs for GroupDocs.Markdown for .NET version 26.3.

Added: 2/4/2026 Downloads:

Download

File Size: 66.42MB

Icons

GroupDocs.Markdown for .NET 26.3 (MSI)

This page contains the MSI installer for GroupDocs.Markdown for .NET version 26.3.

Added: 2/4/2026 Downloads:

Download

File Size: 66.96MB

Icons

GroupDocs.Markdown for .NET 26.1 (DLLs)

This page contains a ZIP archive with the DLLs for GroupDocs.Markdown for .NET version 26.1.

Added: 16/1/2026 Downloads:

Download

File Size: 34.33MB

Icons

GroupDocs.Markdown for .NET 26.1

This contains the MSI installer of GroupDocs.Markdown for .NET

Added: 16/1/2026 Downloads:

Download

File Size: 34.83MB

Icons

GroupDocs.Markdown for .NET 25.9 (DLLs)

This page contains a ZIP archive with the DLLs for GroupDocs.Markdown for .NET version 25.9.

Added: 12/9/2025 Downloads:

Download

File Size: 31.09MB

Icons

GroupDocs.Markdown for .NET 25.9 (MSI)

This page contains the MSI installer for GroupDocs.Markdown for .NET version 25.9.

Added: 12/9/2025 Downloads:

Download

File Size: 31.59MB