MD-TUI
MD-TUI is a TUI application for viewing markdown files directly in your
terminal. I created it because I wasn't happy with how alternatives handled
links in their applications. While the full markdown specification is not yet
supported, it will slowly get there. It's a good solution for quickly viewing
your markdown notes, or opening external links from someones README. If your
terminal support images, they will render.
Installation
Using cargo: cargo install md-tui --locked
On Arch Linux: pacman -S md-tui
For Nix users, there's also Nix flake.
Prebuilt binaries with install script can be found on the release page.
Requirements
- A terminal
- Nerd font
Usage
Start the program running mdt <file.md> or just mdt. The latter will search
recursively from where it was invoked for any markdown file and show it in a
file tree.
Key binds
These are the default settings. See keyboard configuration for configuration options.
| Key | Action |
|---|---|
j or <Down> |
Scroll down |
k or <Up> |
Scroll up |
h |
Go down half a page |
l |
Go up half a page |
d or <Left> |
Scroll one page down |
u or <Right> |
Scroll one page up |
f or / |
Search |
n or N |
Jump to next or previous search result |
s or S |
Enter select link mode. Different selection strategy. |
K |
Hover. Preview where a link is going without going there |
<Enter> |
Select. Depending on which mode it can: open file, select link, search |
Esc |
Go back to normal mode |
t |
Go back to files |
b |
Go back to previous file (file tree if no previous file) |
g |
Go to top of file |
G |
Go to bottom of the file |
e |
Edit file in $EDITOR |
o |
Sort files in file tree |
q |
Quit the application |
Syntax highlighting
MD-TUI supports syntax highlighting in code blocks for the following
languages:
- Bash/sh
- C/C++
- Css
- Elixir
- Go
- Html
- Java
- JavaScript
- Json
- Lua
- Ocaml
- PHP
- Python
- Rust
- Scala
- Typescript
Configuration
The program checks for the file ~/.config/mdt/config.toml at startup. The
following parameters and their defaults are written below.
Keyboard actions
Some key actions are not configurable. Like the following:
- Enter
- Arrow keys
- Escape
- Question mark for help menu
- 'q' to quit the application
- '/' for search
If you override another default key, it's undefined behavior if that key does not get reassigned.
Actions can only be assigned to single characters. Space, fn keys, ctrl+key, backspace etc., will not take affect and the default will be in use.
# Keyboard actions
= 'k'
= 'j'
= 'u'
= 'd'
= 'l'
= 'h'
= 'g'
= 'G'
= 'f'
= 'n'
= 'N'
# This will search downwards until it finds one or select the last link in document.
= 's'
# Finds the link 2/3 up the page. It will search then for closest in both direction.
= 'S'
= 'e'
= 'K'
= 'b'
= 't'
= 'o'
Colors and misc
Setting color to "" will not remove it, but leave it as its default. To remove
colors, set it to reset.
# General settings
= 100
# Inline styling
= "reset"
= "reset"
= "#2A2A2A"
= "red"
= "reset"
= "blue"
= "darkgrey"
= "green"
= "reset"
# Block styling
= "#2A2A2A"
= "reset"
= "reset"
= "yellow"
# File tree
= "blue"
= "lightgreen"
= "gray"
= "lightgreen"
= false
# Quote bar
= "lightmagenta"
= "white"
= "lightred"
= "lightblue"
= "lightgreen"
= "lightYellow"
# Heading
= "blue"
= "black"
= "green"
= "magenta"
= "cyan"
= "yellow"
= "lightred"
Links
MD-TUI currently supports [text](url), [[link]], and [[link|Some title]]
type of links.
Neovim plugin
This application also exists as a plugin for Neovim called Preview.
[!NOTE]
This version does not support images regardless of your terminal capabilities.
Contributions
Both PRs and issues are appreciated!