Rhizome
NotesArticlesTagsGraphEditor

Built with Rhizome β€” A static personal notes system

  1. Home
  2. /Notes
  3. /Markdown Guide

Markdown Guide

2026-02-12Β· 3 min readΒ· 454 words

A comprehensive guide to Markdown formatting in Rhizome.

#guide#markdown#formatting

Table of Contents

  • Text Formatting
  • Headings
  • Lists
  • Unordered Lists
  • Ordered Lists
  • Task Lists
  • Wiki-Links
  • Links and Images
  • Tables
  • Blockquotes
  • Horizontal Rules
  • Code Blocks
  • Escaping
  • Frontmatter

Markdown Guide

Rhizome supports GitHub Flavored Markdown (GFM) for rich text formatting.

Text Formatting

Basic inline formatting:

  • Bold text using double asterisks
  • Italic text using single asterisks
  • Strikethrough using double tildes
  • Inline code using backticks
  • Highlight using HTML <mark> tags

Headings

Use # symbols for headings. The frontmatter title becomes the page title, so start content with ## for sections.

## Section
### Subsection
#### Sub-subsection

Lists

Unordered Lists

  • First item
  • Second item
    • Nested item
    • Another nested item
  • Third item

Ordered Lists

  1. First step
  2. Second step
  3. Third step

Task Lists

  • Completed task
  • Incomplete task
  • Another task

Wiki-Links

Wiki-links are the primary way to connect notes in Rhizome:

SyntaxResult
[[Note Title]]Links to note by title
[[Note Title|display text]]Shows "display text" but links to note
[[Note#Section]]Links to specific heading in note
[[Note#^block-id]]Links to specific block by ID
[[Note#Section|display text]]Anchor link with custom text
[[Knowledge Graph Basics]]Knowledge Graph Basics
[[Knowledge Graph Basics|learn about graphs]]learn about graphs
[[Embeds and Anchors#Heading Anchors]]Embeds and Anchors
πŸ’‘

Wiki-links are case-insensitive. [[welcome to rhizome]] and [[Welcome to Rhizome]] link to the same note.

Clicking a wiki-link opens it in a split pane, letting you view both notes side-by-side. See Split-View Navigation for more.

For advanced features like embedding notes inline (![[...]]), see Embeds and Anchors.

Links and Images

Standard markdown links work alongside wiki-links:

  • External link opens in a new tab
  • Wiki-links connect notes by title: Welcome to Rhizome
  • Use standard markdown syntax for images: \![Alt text](/assets/image.png)

Images are placed in content/assets/ and referenced as:

![Alt text](/assets/filename.png)

Tables

FeatureStatusDescription
Wiki-linksβœ…Connect notes by title
Backlinksβœ…See incoming connections
Tagsβœ…Organize by topic
Searchβœ…Full-text search
Graphβœ…Visualize connections

Alignment can be controlled with colons:

| Left | Center | Right |
|:-----|:------:|------:|
| L    |   C    |     R |

Blockquotes

The best way to predict the future is to invent it.

β€” Alan Kay

Use blockquotes for highlighting quotes or important notes.

Nested blockquotes work too:

First level

Second level

Horizontal Rules

Use three dashes to create a section break:


Code Blocks

See Code Blocks for syntax highlighting examples.

Escaping

To display literal characters that have special meaning:

  • \*not italic\* β†’ *not italic*
  • \[not a link\] β†’ [not a link]
  • `inline code with *asterisks*` β†’ inline code with *asterisks*

Frontmatter

Every note begins with YAML frontmatter:

---
title: "Note Title"
date: "2026-02-12"
type: "note"
tags: ["tag1", "tag2"]
summary: "A brief description shown in listings and search."
---
FieldRequiredDescription
titleYesNote title (used for wiki-links)
dateNoPublication date (YYYY-MM-DD)
typeNonote or article (default: note)
tagsNoArray of tags for organization
summaryNoBrief description for listings
updatedNoLast update date
statusNodraft, published, etc.
privateNoIf true, excludes from build

Backlinks

  • Callouts

Full Note Embed

  • Embeds and Anchors

    ...Embed markdown !Note Title Example: !Markdown GuideWiki-Links Section Embeds Embed just a specific section...

Wiki-Links

  • Quick Reference

    ...m its full guide for easy access. Wiki-Links !Markdown GuideWiki-Links Anchor Links ![[Embeds and AnchorsCombined ...

Feature Guides

  • Welcome to Rhizome

    ...Quick Reference]] - Essential syntax cheatsheet - Markdown GuideWiki-Links - Connect notes with wiki-style links - [[Markdow...