Frontmatter

Description

Frontmatter provides document metadata and configuration at the beginning of Markdown files. It uses YAML format enclosed by triple dashes and supports various metadata fields including title, author, tags, and custom properties. Frontmatter is preserved during ADF conversion.

.md markdown syntax

Basic Frontmatter

---
title: "Document Title"
author: "Author Name"
date: "2023-03-15"
---

Extended Frontmatter

---
title: "Complete Project Documentation"
author: "Technical Writing Team"
date: "2023-03-15"
version: "1.2.0"
status: "draft"
tags: 
  - documentation
  - api
  - guide
metadata:
  department: "Engineering"
  project: "Platform API"
  reviewers:
    - "alice.johnson"
    - "bob.smith"
---

ADF Configuration

.adf-schema.json schema

Examples

API Documentation

Project Requirements

Meeting Minutes

Tutorial Document

Policy Document

Release Notes

Research Report

Training Material

Last updated