frontmatter-guide

#writing/features#writing/reference

Frontmatter Guide

All YAML fields supported in note frontmatter:

FieldTypeDefaultDescription
publishbooleanfalseWhether the note appears on the site
titlestringfilenameDisplay name
tagsstring[][]Graph tag nodes
aliasesstring[][]Alternate link names
graph.shapestringsphereNode shape
graph.colorstringNode colour (CSS hex)
graph.collapsiblebooleanfalseStart collapsed in graph
graph.calloutbooleanfalseShow badge label
graph.calloutTextstringBadge label text

See Graph Features Hub · Writing Hub.

Full Example

---
publish: true
title: "My Note"
tags: [programming/rust, tech]
aliases: [rust note]
graph:
  shape: torusknot
  color: "#F74C00"
  collapsible: false
  callout: true
  calloutText: "Hot!"
---