mdglance is a small, keyboard-first Markdown and SVG previewer for terminal workflows.
It is intended for people who write in terminal editors and want to check the rendered result without opening a full editor, browser workspace, or project-oriented Markdown application. Point it at a file, keep writing, and glance at the native preview whenever you save.
The viewer is deliberately read-only and designed to stay out of the writing loop. Live reload, navigation, search, the table of contents, link following, and SVG controls are all available from the keyboard, so previewing does not require switching tools or reaching for the mouse.
Note
This is an early prototype developed and tested primarily on macOS.
- Live, read-only Markdown and SVG preview
- Keyboard navigation, search, table of contents, link hints, and Markdown history
- File queues supplied as newline-separated paths on standard input
- Offline Mermaid rendering and optional local PlantUML rendering
- Syntax highlighting and configurable light/dark themes
- Local image support
Install mdglance with Homebrew:
brew install NepomukWolf/tap/mdglanceAlternatively, install it from crates.io with Cargo:
cargo install mdglanceThen preview a file with:
mdglance README.mdYou need a current Rust toolchain.
git clone https://github.com/NepomukWolf/mdglance.git
cd mdglance
cargo run -- examples/render-kitchen-sink.mdPass --detach to return the shell prompt immediately:
cargo run -- --detach README.mdWith no path argument, mdglance reads a newline-separated file queue from standard input:
fd -e md -e svg | cargo run --Use [ and ] to move through the queue.
Mermaid is bundled and works offline. PlantUML rendering is disabled by default because it invokes a local executable. See the configuration reference to enable it for trusted workspaces.
| Keys | Action |
|---|---|
j / k |
Scroll down / up |
d / u |
Half-page down / up |
Space, g, G |
Page down, top, bottom |
/, n, N |
Search, next match, previous match |
t, Tab, Enter |
Toggle TOC, change focus, activate selection |
f |
Show link hints |
h / l |
Markdown history; pan left / right in SVG mode |
[ / ] |
Previous / next queued file |
+ / - / 0 |
Zoom in / out / reset SVG view |
T |
Open workspace trust controls while restricted |
p |
Open the live, session-only theme picker |
?, Esc, q |
Help, close overlay, quit |
Shortcuts can be replaced in the configuration file.
Configuration is optional. It can control the window, table of contents, themes, diagram rendering,
and every keyboard binding. mdglance checks, in order:
mdglance.tomlin the directory where it was launched~/.config/mdglance/config.toml
A minimal example:
[toc]
visible_on_start = false
max_depth = 3
[window]
width = 1280
height = 900
[theme]
name = "system"
[keybindings]
quit = ["q"]system is the default and follows the OS light/dark appearance using GitHub-like packaged
palettes. The selected palette normally drives both Markdown styling and generated syntax
highlighting; either syntax variant can be overridden independently. See the configuration
reference for the mapping and override options.
Project configuration is used only after its workspace has been trusted. For every option, accepted value, default keybinding, and theme name, see the complete configuration reference. A commented example configuration is available as a copyable starting point.
Additional Alacritty-compatible themes can be placed in $XDG_CONFIG_HOME/mdglance/themes (or
~/.config/mdglance/themes). User themes override bundled files with the same filename stem.
On macOS, option-click the green window button to use Zoom instead of borderless fullscreen.
Unknown workspaces open with a trust prompt and can be viewed in restricted mode. Restricted mode keeps ordinary Markdown viewing available while disabling active content, unsolicited network requests, out-of-workspace image access, local process execution, and project configuration.
See Security and workspace trust for the precise boundary, trust storage, revocation instructions, and guidance on when to trust a folder.
cargo fmt --check
cargo testThe larger files under examples/ are rendering fixtures, not product documentation.
Mermaid and theme attribution is recorded in THIRD_PARTY_NOTICES.md.
Licensed under the MIT License.