Configure your Reactor Docs installation
This guide covers all the configuration options available in Reactor Docs.
Each markdown file can include frontmatter with the following fields:
| Field | Type | Description |
|---|---|---|
title | string | Page title (defaults to filename) |
description | string | Brief description for SEO and previews |
order | number | Sort order in navigation (lower = first) |
public | boolean | Whether the page is publicly accessible |
author | string | Author name |
created | string | Creation date |
modified | string | Last modification date |
tags | string[] | Tags for categorization |
---
title: My Page Title
description: A brief description
order: 10
public: false
author: John Doe
created: 2024-01-15
tags:
- guide
- example
---
Use Obsidian-style wiki-links to link between pages:
[[Page Name]] - Links to a page by its title[[Page Name|Display Text]] - Custom display textFor example, go back to Getting Started to review the basics.