A terminal markdown viewer that renders markdown files with syntax highlighting, tables, and live reloading — right in your terminal.
Built because glow, mdcat, and friends don't handle tables well, and I wanted vim-style navigation with auto-reload on file changes.
- Syntax-highlighted code blocks (via syntect)
- Unicode box-drawing tables with column wrapping and alignment
- Live file watching — edit your markdown and see changes instantly
- Vim-style key bindings (j/k, d/u, g/G)
--dumpmode for piping rendered output to stdout
brew install skibitsky/tap/mdviewcargo install --path .mdview README.mdRender to stdout instead of the TUI (useful for piping or testing):
mdview --dump -w 80 README.md| Key | Action |
|---|---|
j / ↓ |
Scroll down |
k / ↑ |
Scroll up |
d |
Half page down |
u |
Half page up |
g |
Go to top |
G |
Go to bottom |
Space / PgDn |
Page down |
PgUp |
Page up |
q / Esc |
Quit |
MIT