Chronicler Logo Chronicler

🧰 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.

πŸ“ Writing in MarkdownπŸ”—

Chronicler uses Markdown to format your pages.

πŸ”— Linking Between PagesπŸ”—

Use [[Page Name]] to link to other pages in your vault.

πŸ”– 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.

--- title: Rivertown image: rivertown.jpg tags: [city, trade, river] ---

πŸ“‚ Organizing with Tags & FoldersπŸ”—

There are two main ways to organize your vault:

  1. πŸ—‚οΈ Folders: Create folders in the file explorer to group related pages, like Places/, Characters/, or History/.
  2. 🏷️ Tags: Add a list of tags to the tags field in the infobox. Click any tag to see all other pages with that tag.
tags: [city, coastal]

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:

image: rivertown.jpg

Page Images

The easiest way to add an image to the body of your page is with the wikilink syntax:

![[world-map.jpg]]

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 -.

| Item | Price | |--------|-------| | Sword | 100gp | | Shield | 75gp |

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.

{{insert: Page Name}}

You can also set a custom title for the header, or make the insert start hidden.

{{insert: The Great War | title="Summary of the Great War" | 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:

πŸ“„ 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.

🎨 Themes & FontsπŸ”—


πŸš€ 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:

image: [rivertown_day.jpg, rivertown_night.jpg, rivertown_castle.jpg]

You can also add captions to each image in the carousel:

image: [[rivertown_day.jpg, "Day"], [rivertown_night.jpg, "Night"]]

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:

  1. Wrap the value in quotes:
    motto: 'Strength | Honor' race: '[[Elf|High Elf]]'
  2. 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.

motto: '*Strength and Honor*' homepage: '[Official Site](https://example.com)'

⚜️ 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.

allegiance: 'Lynorian Empire ![[lynorian-flag.png]]'

πŸͺ„ Advanced Infobox LayoutsπŸ”—

Use the layout key to add headers and group fields into columns for a professional, wiki-style infobox.

Adding Headers
Grouping Fields into Columns
Full Example
--- title: Battle of the Somme belligerents_allies: ["United Kingdom", "France"] belligerents_central: ["German Empire"] commander_allies: ["Douglas Haig", "Ferdinand Foch"] commander_central: ["Erich von Falkenhayn"] layout: - type: header text: Belligerents position: { above: belligerents_allies } - type: group render_as: columns keys: [belligerents_allies, belligerents_central] - type: header text: Commanders position: { above: commander_allies } - type: group render_as: columns keys: [commander_allies, commander_central] ---

πŸ–ΌοΈ 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:

<img src="rivertown-market.png" style="float: right; margin-left: 1em; width: 300px;" >

Add a caption using <figure>:

<figure style="float: right; width: 250px;"> <img src="silverflow-river.jpg" style="width: 100%;"> <figcaption style="text-align: center; font-style: italic;"> The Silverflow River at dawn. </figcaption> </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.

The Gooblboys invaded the Lynorian Empire <img src="lynorian-flag.png" alt="Lynorian Empire Flag" style="height: 1em; vertical-align: middle;"> on a Saturday.

πŸ—„οΈ Advanced TablesπŸ”—

You can control the alignment of content within columns by adding colons (:) to the header separator line.

Example:

| Item | Price | |---|---:| | Sword | 100gp | | Shield | 75gp |

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.

<div class="float-container"> <table class="float-left"> </table> <h3>Level 1</h3> To ease new players into the XP system... </div>

⚠️ 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.

<p style="font-family:'Your Custom Font'; color:blue; font-size:2rem">This paragraph will be big and blue.</p>
This text is normal, but <span style="font-family:'Your Custom Font';">these words</span> are special.

πŸ“₯ Importing Word DocsπŸ”—

You can import .docx files from Microsoft Word directly into your vault.


❓ Need Help?πŸ”—

Happy chronicling! ✍️ - Michael