GroupDocs.Markdown supports two Markdown dialects. Call setFlavor on DocumentConvertOptions to control the output.
GitHub Flavored Markdown (default)
GFM supports pipe tables, strikethrough text, and other extensions:
importcom.groupdocs.markdown.*;publicclassFlavorGfm{publicstaticvoidmain(String[]args){DocumentConvertOptionsoptions=newDocumentConvertOptions();options.setFlavor(MarkdownFlavor.GITHUB);MarkdownConverter.toFile("business-plan.docx","flavor-gfm.md",options);// Tables are rendered as:
// | Column A | Column B |
// | --- | --- |
// | value1 | value2 |
}}
business-plan.docx is a sample file used in this example. Click here to download it.

**Meridian Outdoor Co. — Business Plan**
FY2026 Strategic Plan
# **Table of Contents**
FY2026 Strategic Plan 1
[TRUNCATED]
business-plan.docx is a sample file used in this example. Click here to download it.

**Meridian Outdoor Co. — Business Plan**
FY2026 Strategic Plan
# **Table of Contents**
FY2026 Strategic Plan 1
[TRUNCATED]