π§° Getting Started
Welcome to Chronicler β your digital scriptorium for worldbuilding, notes, and knowledge management.
This guide is split into three parts. Start with The Essentials to learn the basics and get writing in minutes. When you're ready for more power, move on to the Customization and Advanced Guide.
π‘ To see these features in a real-world context, check out the annotated example page!
Part 1: The Essentials
π Vaults and Filesπ
Chronicler stores your notes as plain Markdown (.md) files in a folder on your computer, called a vault.
- β
 You choose where your vault lives (e.g., 
C:\Users\YourName\MyWorld). - π Create folders and organize your files however you like.
 - π Changes made on your computer are instantly reflected in the app.
 
π Writing in Markdownπ
Chronicler uses Markdown to format your pages.
- Use 
# heading,## subheading,**bold**,*italic*,-for bullet lists, and so on - Use 
---to insert horizontal separators to divide long pages into readable sections. 
π Linking Between Pagesπ
Use [[Page Name]] to link to other pages in your vault.
- Create an alias with 
[[Page Name|link text]]. - When you rename a page, all links to it are automatically updated.
 - See all pages that link to your current page in the Backlinks panel.
 
π Infoboxesπ
At the top of each page is an infobox for at-a-glance details. This is controlled by a block of text at the very top of your file called YAML frontmatter. This is where you can set the page's title, add an image, and apply tags.
π Organizing with Tags & Foldersπ
There are two main ways to organize your vault:
- ποΈ Folders: Create folders in the file explorer to group related pages, like 
Places/,Characters/, orHistory/. - π·οΈ Tags: Add a list of tags to the 
tagsfield in the infobox. Click any tag to see all other pages with that tag. 
Tip: Pages and folders are ordered alphabetically. If you want to enforce a specific order, you can prefix them with numbers (e.g., 01_Characters, 02_Places, 03_History).
πΌοΈ Imagesπ
You can store your images in any folder within your vault, e.g a central images/ folder, or right next to your notes. Chronicler will find them automatically.
Infobox Images
You can display an image in a pageβs infobox by adding the image field to the frontmatter:
Page Images
The easiest way to add an image to the body of your page is with the wikilink syntax:
For more control over image size and placement, see the Advanced Guide.
π«£ Spoilersπ
Hide text by wrapping it in double pipes ||like this||. The text will be blacked out until a reader clicks on it.
The kingβs advisor is ||secretly a vampire||.
ποΈ Tablesπ
Create simple tables with pipes | and dashes -.
Tip: Links with custom text (e.g., [[Page|Link text]]) use the | symbol, which can break a table's structure. To fix this, just add a backslash \ before it: [[Page\|Link text]].
For more control over tables, see the Advanced Guide.
π§© Page Insertsπ
Embed the content of one page directly inside another. This is great for reusing information (e.g navboxes, item cards, stat blocks...) so you only have to update it in one place.
You can also set a custom title for the header, or make the insert start hidden.
Part 2: Customization
This section covers customization for your workflow and the appearance of your pages.
Application Settings Directoryπ
Chronicler stores global settings, themes, fonts, and templates in a dedicated folder on your computer. You can find it here:
- Windows: 
%AppData%\io.github.mak-kirkland.chronicler\ - Linux: 
~/.local/share/io.github.mak-kirkland.chronicler/ - macOS: 
~/Library/Application Support/io.github.mak-kirkland.chronicler/ 
π Page Templatesπ
Use templates to create new pages with a pre-defined structure, saving you time and ensuring consistency across your vault. For example, you could have templates for characters, locations, or session notes, each with pre-defined YAML frontmatter and section headings.
- Manage Templates: Go to Settings β Manage Templates to create and edit them.
 - Automatic Title: Use the 
{{title}}placeholder in a template. It will be automatically replaced with the new page's name. 
π¨ Themes & Fontsπ
- Themes: Switch between built-in color schemes or create your own with the Theme Editor.
 - Custom Fonts: Add your own 
.woff2,.ttf, or.otffont files to thefontssubfolder within the Application Settings Directory. After a restart, they will be available in the theme editor. 
π Part 3: Advanced Guide
This section covers powerful features for enhancing your workflow.
π Mastering the Infobox (YAML Frontmatter)π
The "infobox" at the top of each page is controlled by a block of text called YAML frontmatter. You can add any custom fields you want (e.g., population, leader, age), and they will automatically appear in the infobox.
Several fields have special functionality:
| Field | Description | 
|---|---|
title | 
                        The display title for the page and infobox. | 
subtitle | 
                        A subtitle shown in the infobox. | 
infobox | 
                        A header shown below the infobox image. | 
tags | 
                        A list of tags for organization. | 
image | 
                        An image or carousel of images for the infobox. | 
layout | 
                        Rules for creating headers and columns in the infobox. | 
πΌοΈ Image Carouselsπ
Besides a single image, you can provide a list of images to create a carousel in the infobox:
You can also add captions to each image in the carousel:
Special syntax inside frontmatter valuesπ
Some values may contain special characters that need to be treated properly (for example [[wikilinks]] or ||spoilers||). There are two safe ways to include these without breaking the frontmatter:
- Wrap the value in quotes:
                    motto: 'Strength | Honor' race: '[[Elf|High Elf]]'
 - For multi-line text, or to use special characters without quotes, start the line with a pipe symbol (
|):notes: | This text can contain [[wikilinks]] or ||spoilers|| directly. It can also span multiple lines. 
βοΈ Inline Markdown in Field Valuesπ
You can use Markdown like **bold** and *italic* inside field values.
βοΈ Inline Imagesπ
You can embed small images like flags or icons directly into infobox fields. This is great for adding visual flair next to text.
πͺ Advanced Infobox Layoutsπ
Use the layout key to add headers and group fields into columns for a professional, wiki-style infobox.
Adding Headers
type: header: Defines the rule as a header.text: 'Your Text': The text to display in the header.position: { above: 'field_name' }: Injects the header immediately beforefield_name.
Grouping Fields into Columns
type: group: Defines the rule as a group.render_as: columns: Specifies that the group should be rendered as columns.keys: [field1, field2]: A list of the frontmatter keys to include in the group.
Full Example
πΌοΈ Advanced Imagesπ
β¨ Images in the Page Body
For full control over an image's size, alignment, and caption, use HTML tags in the body of your page.
Float an image to the right of your text:
Add a caption using <figure>:
βοΈ Inline Images (e.g., Flags or Icons)
You can also place small images directly into a line of text. This is perfect for icons or flags. The height: 1em; style makes the image scale with the text, and vertical-align: middle; centers it nicely.
ποΈ Advanced Tablesπ
You can control the alignment of content within columns by adding colons (:) to the header separator line.
- A colon on the left side of the hyphens makes the content left-aligned (this is the default).
 - A colon on the right side makes the content right-aligned.
 - A colon on both sides makes the content centered.
 
Example:
You can also use standard HTML <table> tags to create more complex tables with greater styling control.
πͺ Advanced Layoutsπ
Use floating layouts to place tables or images beside your text instead of above or below it.
Wrap your content in a <div class="float-container">, and add either .float-left or .float-right to the element you want to float.
β οΈ Markdown headers (##) won't wrap inside the container. Use HTML tags instead (<h2>).
βοΈ Inline Stylingπ
Use basic HTML tags directly in your Markdown to style specific pieces of text. This is useful for adding thematic fonts or colors. The style attribute is supported on <p> and <span> tags.
π₯ Importing Word Docsπ
You can import .docx files from Microsoft Word directly into your vault.
- Go to Settings β Import from .docx and choose your files.
 - Formatting (headings, bold, italics, links) is preserved.
 - Requires Pandoc (Chronicler can download it for you automatically).
 
β Need Help?π
- Join the Discord community!
 - GitHub Issues for bugs or feature requests.
 
Happy chronicling! βοΈ - Michael