Skip to content

Frontmatter

Frontmatter is YAML metadata at the start of a note, enclosed by --- delimiters.

---
description: A brief description of this note
tags:
- tag1
- tag2
---

For dev-kiln documentation, these fields are required:

FieldTypeDescription
titlestringDisplay title for the note
descriptionstringBrief summary (1-2 sentences)
tagslistCategorization tags
FieldTypeDescription
ordernumberSort order within a folder
aliaseslistAlternative names for wikilink resolution
createddateCreation timestamp
modifieddateLast modification timestamp
---
description: Your first steps with Crucible
tags:
- guide
- beginner
order: 1
aliases:
- quickstart
- intro
---
# Getting Started
Your content here...

Crucible parses frontmatter using the parser module in crucible-core:

  • Implementation: crates/crucible-core/src/parser/ (frontmatter parsing)
  • Types: crates/crucible-core/src/parser/types/frontmatter.rs