How to write notes for this site
This guide covers how to write notes for this site: where they live, every frontmatter field, and how to link notes together. It applies to Obsidian and to any other markdown app, because the notes are plain markdown files.
Where notes live
Notes are plain markdown files in the vault. The site reads the ones marked status: public. You can write them in Obsidian, VS Code, Typora, or any editor that saves markdown.
The frontmatter
Frontmatter is a YAML block at the top of the file, between --- lines. It decides everything about the note.
Required fields
title: the note titledate: the publication date,YYYY-MM-DDstatus:public,draftorprivate
Optional fields
slug: the URL, defaults to the file nameauthor: defaults to Cluyverth Pereiratags: a list, e.g.tags: [astro, guide]category: groups notes by color in the graphnotebook: groups notes into clusters, and a note can only have onedescription: one line shown on cardsproject: true: renders the note on the projects pagestack: tech list for projectsrepo: the project repository URL, renders a source button on project pageslive: the project live site URL, renders a live button on project pagesimage: a cover URL for cards and the graphlang:enorpt, marks the note languagetranslation: the slug of the note in the other language
Statuses
public: renders everywheredraft: visible in local dev onlyprivate: never renders anywhere
Linking notes
Links are optional. A note can exist without linking to anything, and it can still be found through its back links (the notes that link to it, shown on the right side of the note page).
Use Obsidian wikilinks to connect notes:
[[rss-guide]]links to another note[[how-to-write-notes|writing guide]]links with a custom label- Links to private or missing notes render dimmed, never broken
A complete example
---
title: My first note
date: 2026-08-05
status: public
tags: [meta]
category: Guides
notebook: Guides
description: A short summary shown on the card.
---
The note body. Markdown works: **bold**, lists, headings.
See the [[rss-guide|RSS guide]].
Checklist before publishing
- Frontmatter has
title,dateandstatus: public - The
descriptionis written
That is it. See cluyverth hub for the full pipeline behind this site.