Skip to content

Getting Started

Pick the track that matches how you work. Each one gets you from zero to a rendered deck in under a minute.

  1. Download StellarDeck-0.9.0-arm64.dmg (Apple Silicon)
  2. Drag StellarDeck to Applications
  3. First launch: right-click → Open (the app isn’t code-signed yet, so macOS asks once)
  4. Drop any .md file into the window — you’re presenting

Arrow keys navigate, G opens the grid view, P opens presenter mode.

Grab the sample decks (three complete presentations, images included) from the release:

Terminal window
curl -L -o demo.zip https://github.com/peas/stellardeck/releases/latest/download/stellardeck-demo-decks.zip
unzip demo.zip
stellardeck --preview demo/bean-to-bar-chocolate.md

Or open demo/bean-to-bar-chocolate.md in the desktop app. Other samples: demo/hand-balancing.md, demo/vibe-coding.md.

Create a file called my-deck.md:

# Hello World
Welcome to StellarDeck.
---
# Second Slide
That's it — `---` separates slides.

Then preview it:

Terminal window
stellardeck --preview my-deck.md

(In the desktop app: just drop the file into the window. From a repo checkout: npm run preview -- my-deck.md.)

StellarDeck turns plain markdown into presentation slides. Write text, separate with ---, and you have a deck.

Frontmatter at the top configures the deck. --- on its own line separates slides.

slide.md
footer: stellardeck.dev
slidenumbers: true

# My First Slide

Welcome to StellarDeck.

Use #, ##, ### for heading levels.

slide.md
# Main Title

## Subtitle

### Section heading

Regular text below headings.

Add [fit] after # to make headings stretch to fill the slide width.

slide.md
#[fit] Auto-fit Headings

^ Add [fit] after # to make headings fill the slide width.

Unordered lists use -, ordered use 1.. Nest with two spaces.

slide.md
# Shopping List

- Apples
- Bananas
- Yellow ones
- Green ones
- Oranges

1. First step
2. Second step

Use > for blockquotes. They render with an accent-colored left border.

slide.md
> The best way to predict
> the future is to invent it.
> — Alan Kay

Lines starting with ^ become speaker notes — invisible on the slide, visible in presenter mode (P).

slide.md
# Key Point

The important thing to remember.

^ This note is only visible in presenter mode. The audience never sees it.

[.build-lists: true] reveals list items one at a time on click.

slide.md
[.build-lists: true]

# Agenda

- Introduction
- Main topic
- Conclusion

Press P in the desktop app to open a presenter window with the current slide, next slide preview, and speaker notes. Here’s what it looks like:

Current
Next
Speaker Notes
No notes for this slide.

Navigate with the arrows — the next slide preview and notes update automatically. In the desktop app, the presenter window syncs with the main window via BroadcastChannel.