Presenterm: Build Markdown Slideshows in Your Terminal
Let's be honest: building slides can be a drag. You're in the zone, writing code in your terminal, and suddenly you need to context-switch to a graphical slide editor to prepare a quick demo or team update. It breaks the flow. What if you could build and present slides without ever leaving your terminal?
That's exactly what Presenterm does. It's a terminal-based presentation tool that turns Markdown files into navigable, good-looking slideshows. No browser, no heavy GUI application—just your terminal and a simple text file.
What It Does
Presenterm is a Rust-based tool that reads a standard Markdown file, parses it, and renders it as a presentation right where you are. You write your slides in Markdown (with a few presentation-specific conventions), and Presenterm handles the rest: splitting content into slides, applying syntax highlighting to code blocks, and providing keyboard shortcuts to navigate forward and backward.
It supports images (via terminal graphics protocols like Kitty or iTerm2), multiple slide layouts, and speaker notes. It's essentially a lightweight, portable presentation layer that lives in your development environment.
Why It's Cool
The beauty of Presenterm is in its constraints and its focus. It's built for developers, by a developer. Here’s what makes it stand out:
- Zero Friction Workflow: Your slides are just a Markdown file in your project repo. You can edit them with Vim, VS Code, or any editor, and view them instantly. This is perfect for sprint demos, internal tech talks, or recording CLI-focused tutorials.
- It's Just Markdown: You already know the syntax. Presenterm uses three dashes (
---) on a new line to separate slides. That's the main extra rule to learn. - Portable and Fast: It's a single binary. Share your
slides.mdfile with a colleague, and if they have Presenterm installed, they can view it exactly as you intended. No font issues, no broken layouts. - Fits the Developer Aesthetic: It embraces the terminal. Code blocks are beautifully syntax-highlighted, and the overall look is clean and readable. It feels professional in a way that a browser tab full of bullet points often doesn't.
- Speaker Notes: You can add private notes for each slide (using the
notes:keyword) that only you see during presentation mode, keeping you on track without cluttering the main view.
How to Try It
Getting started is straightforward. First, you'll need to install Presenterm. The easiest method is via Cargo (if you have Rust installed):
cargo install presenterm
Altern