reference
Add structured metadata to any note with YAML front matter. MoreInfo reads several built-in keys and indexes everything else for search and filtering.
Front matter is a block of YAML metadata at the very top of a Markdown file, delimited by triple-dash --- lines. It's entirely optional — MoreInfo works fine without it.
---
title: My Note
tags: [work, project]
due: 2026-05-01
---
Note content starts here.
titleOverrides the file name as the display title of the note. Useful when your file name is a slug but you want a proper title with spaces and capitalisation.
title: "Q2 Planning Session"
tagsA list of tags. Tags appear in the sidebar tag browser and can be used to filter notes.
tags:
- work
- planning
- q2
Inline form: tags: [work, planning, q2]
aliasesAlternative names for this note. Aliases are matched by wiki-link autocomplete and unlinked mention detection, expanding the connections MoreInfo can find automatically.
aliases:
- Q2 Plan
- Q2
createdISO 8601 timestamp for the creation date. Set automatically by MoreInfo; you can override it if you're importing notes from another tool.
created: 2026-04-12T09:30:00
modifiedISO 8601 timestamp, updated automatically by MoreInfo on every save. Read-only — MoreInfo overwrites any value you set manually.
templateName of a note template to use when creating new notes linked from this one.
template: Meeting Template
Any key you add is stored in the file and indexed for search. Custom keys can be used to build filtered views in the widget panel or queried with key:value syntax in search:
status: in-progress
project: MoreInfo Docs
priority: high
Then search: status:in-progress project:"MoreInfo Docs"
By default MoreInfo hides the front matter block in the editor and shows it as a structured metadata panel in the right sidebar. To edit the raw YAML directly, click Edit front matter in the sidebar or use ⌘⇧M.