YAML front matter

Call setIncludeFrontMatter(true) to extract document metadata into a YAML block at the beginning of the Markdown output. This is commonly used by static site generators like Jekyll, Hugo, and Docusaurus.

Example

import com.groupdocs.markdown.*;

public class FrontMatterExample {

    public static void main(String[] args) {
        DocumentConvertOptions options = new DocumentConvertOptions();
        options.setIncludeFrontMatter(true);

        MarkdownConverter.toFile("business-plan.docx", "front-matter-example.md", options);
        // Output:
        // ---
        // title: "Q3 Report"
        // author: "Jane Doe"
        // format: Docx
        // pages: 12
        // ---
        //
        // # Q3 Report
        // ...
    }
}

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

---
title: "Meridian Outdoor Co. — Business Plan"
author: "Meridian Outdoor Co."
format: DOCX
pages: 5
---

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

**Meridian Outdoor Co. — Business Plan**
[TRUNCATED]

Download full output

Combined with heading offset

import com.groupdocs.markdown.*;

public class FrontMatterCombined {

    public static void main(String[] args) {
        DocumentConvertOptions options = new DocumentConvertOptions();
        options.setIncludeFrontMatter(true);
        options.setHeadingLevelOffset(1);

        MarkdownConverter.toFile("annual-report.docx", "front-matter-combined.md", options);
    }
}

annual-report.docx is a sample file used in this example. Click here to download it.

---
title: "Meridian Outdoor Co. — Annual Report 2025"
author: "Elena Márquez, CFO"
format: DOCX
pages: 6
---

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

**Annual Report 2025**
[TRUNCATED]

Download full output

Front matter fields

Only non-empty fields are included:

FieldSourceExample
titleBuilt-in document title property"Q3 Report"
authorBuilt-in document author property"Jane Doe"
formatDetected file formatDocx
pagesPage or worksheet count12
Close
Loading

Analyzing your prompt, please hold on...

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