Skip to content
Type something to search...
Stella Theme Documentation

Markdown And Frontmatter Basics

All content files start with frontmatter. Frontmatter is YAML between --- lines.

Example

---
title: "My Page"
description: "Short summary"
enable: true
---
# Heading
This is paragraph text.

Edit A Content File

  1. Open a file in src/content/....
  2. Edit frontmatter keys like title, description, or enable.
  3. Edit the Markdown body below the second ---.
  4. Save and refresh the browser.

Common Mistakes To Avoid

  • Use 2 spaces for indentation in YAML.
  • Do not use tabs.
  • Keep quotes if a value has : or special characters.