Epub to Md

Use GroupDocs.Markdown to convert EPUB, MOBI, and other eBook formats to clean Markdown.

Using static method

The simplest way to convert an eBook file:

import com.groupdocs.markdown.*;

import java.io.File;

public class ExportEbookStatic {

    public static void main(String[] args) {
        // Set license (optional)
        if (new File("GroupDocs.Markdown.lic").exists()) {
            License.set("GroupDocs.Markdown.lic");
        }

        // Convert EPUB to Markdown string
        String markdown = MarkdownConverter.toMarkdown("business-plan.epub");

        // Or save directly to a file
        MarkdownConverter.toFile("business-plan.epub", "export-ebook-static.md");
    }
}

business-plan.epub is a sample file used in this example. Click here to download it.

![](data:...;base64,[elided])

**Meridian Outdoor Co. — Business Plan**

FY2026 Strategic Plan


# **Table of Contents**


[TRUNCATED]

Download full output

Using instance API with options

For more control, use the instance API:

import com.groupdocs.markdown.*;

import java.io.File;

public class ExportEbookInstance {

    public static void main(String[] args) {
        if (new File("GroupDocs.Markdown.lic").exists()) {
            License.set("GroupDocs.Markdown.lic");
        }

        try (MarkdownConverter converter = new MarkdownConverter("business-plan.epub")) {
            ExportImagesToFileSystemStrategy strategy = new ExportImagesToFileSystemStrategy("images");
            strategy.setImagesRelativePath("images");

            DocumentConvertOptions options = new DocumentConvertOptions();
            options.setImageExportStrategy(strategy);
            options.setHeadingLevelOffset(1);

            converter.convert("export-ebook-instance.md", options);
        }
    }
}

business-plan.epub is a sample file used in this example. Click here to download it.

export-ebook-instance.md (5 KB)

Download full output

For the full list of input formats, see the supported formats page.

Close
Loading

Analyzing your prompt, please hold on...

An error occurred while retrieving the results. Please refresh the page and try again.