Obsidian is a markdown‑based note‑taking app that many writers use to organize ideas, outline chapters, and draft stories. This tutorial walks you through setting up Obsidian, creating a writer‑friendly vault, using templates, linking notes, and publishing finished drafts. Follow each step and you’ll have a flexible writing system that works offline and scales to a full manuscript.
Download the installer from obsidian.md. Choose Windows, macOS, or Linux. Run the file and follow the prompts.
Search “Obsidian” in the Apple App Store or Google Play. Install the free app. Sign in with an Obsidian account if you plan to use Sync.
A vault is a folder that stores all your markdown files. For a novel, create a vault named “MyNovel”.
File → New vault → Name: MyNovel → Location: Documents/Obsidian
Obsidian will open the empty vault. All notes you create are saved as plain .md files, which you can back up with any cloud service.
Organize your manuscript before you write. A typical hierarchy looks like this:
MyNovel/
├─ 00_Meta/
│ ├─ Outline.md
│ └─ Characters.md
├─ 01_Chapter_One/
│ ├─ Draft.md
│ └─ Research.md
├─ 02_Chapter_Two/
│ ├─ Draft.md
│ └─ Research.md
└─ 99_Extras/
└─ Worldbuilding.md
Use the file explorer pane (left side) to create folders. Right‑click → New folder.
Templates save time and keep style consistent. Install the built‑in “Templates” core plugin:
00_Meta/Templates.Create a file SceneTemplate.md with the following content:
---
title: {{title}}
date: {{date}}
tags: scene, draft
---
# {{title}}
**Point of View:**
**Goal:**
**Conflict:**
---
When you start a new scene, open the command palette (Ctrl+P), type “Insert template”, and select “SceneTemplate”. The placeholders fill automatically.
Link characters, locations, and plot points with [[double brackets]]. For example, in a chapter draft type:
When {{character:Anna}} entered [[The Old Library]], she sensed danger.
Obsidian creates a link to the note “The Old Library”. Clicking the link opens that note. The back‑link appears at the bottom of the target note, showing where it was referenced.
Open the Graph view (right‑click on the vault name → “Open graph”). You’ll see a network of notes. Use the filter box to focus on “character” tags.
Install the “Pandoc” community plugin (Settings → Community plugins → Browse). After installation, open a note and run “Export to Word”. The plugin converts markdown to a .docx file, preserving headings and lists.
Obsidian Publish costs $8/month. Turn on “Publish” in Settings → Obsidian Publish, select the notes you want public, and click “Publish”. The service creates a static site at yourname.obsidian.md.
If you use a static site generator, the “Publish to Hugo” plugin writes each note as a markdown file with front‑matter. Run the command “Publish to Hugo” and copy the output folder to your Hugo site.
Below is a quick side‑by‑side comparison of Obsidian, Notion, and Scrivener for writers.
| Feature | Obsidian | Notion | Scrivener |
|---|---|---|---|
| File storage | Local markdown files | Cloud database | Local project file |
| Offline work | Full offline | Limited offline | Full offline |
| Version control | Git friendly | None | Basic snapshots |
| Cost (basic) | Free (core) | Free tier limited | $49 one‑time |
| Graph view | Built‑in | None | None |
| Mobile app | iOS/Android | iOS/Android | iOS only |
| Export formats | PDF, DOCX, HTML via plugins | PDF, HTML | DOCX, PDF, ePub |
Obsidian offers a free personal plan that includes core features, unlimited notes, and local storage. Premium add‑ons like publishing and sync cost $8‑$10 per month.
Yes. Obsidian has iOS and Android apps that sync via Obsidian Sync or third‑party services such as Dropbox.
Obsidian stores plain markdown files locally, which makes version control easy. Notion stores data in the cloud and adds a WYSIWYG editor, but it lacks offline‑first reliability.
A basic knowledge of headings, links, and lists is enough. Obsidian’s live preview shows formatted text as you type, so you can learn gradually.
Yes. The Obsidian Publish service lets you turn a vault into a static website. Alternative plugins export to WordPress, Hugo, or Netlify.
Now you have a complete workflow: install Obsidian, set up a writer’s vault, create templates, link ideas, and export finished drafts. The system stays with you whether you write a short story or a 500‑page novel.