marustdown 0.1.3

A fast, configurable terminal markdown viewer with syntax highlighting, task toggling and keyboard link following
# marustdown

A fast terminal markdown viewer with **syntax highlighting**, task lists you can check
off, and an outline for jumping around. See the [README](../README.md) for more.

## Code

```rust
use std::collections::HashMap;

/// Counts how often each word appears.
fn word_count(text: &str) -> HashMap<&str, usize> {
    let mut counts = HashMap::new();
    for word in text.split_whitespace() {
        *counts.entry(word).or_insert(0) += 1; // one more
    }
    counts
}
```

> [!TIP]
> Press `y` to copy a code block to the clipboard, even over SSH.

## Tasks

- [x] Render markdown in the terminal
- [ ] Check off tasks with `x`
- [ ] Jump anywhere with the outline

## Keys

| Key | Action |
|:---:|--------|
| `x` | Toggle the task under the cursor |
| `o` | Open the outline |
| `f` | Follow a link from the keyboard |

## Configuration

### Themes

Pick `dark`, `light` or `ansi`, or write your own theme file.

### Key bindings

Every key can be rebound in `~/.config/marustdown/config.toml`.