A library and CLI tool for rendering Markdown documents with syntax highlighting and rich text formatting. Built with mq - jq-like command-line tool for markdown processing.

Features
- 🎨 Syntax Highlighting: Tree-sitter powered syntax highlighting for 29+ programming and config languages
- 📝 Rich Markdown Rendering: Support for headers, lists, code blocks, links, images, tables, and more
- 🧜 Mermaid Diagrams: Best-effort ASCII-art rendering of simple
graph/flowchartblocks - 🔔 GitHub-style Callouts: NOTE, TIP, IMPORTANT, WARNING, CAUTION, rendered as wrapped, bordered boxes
- 🔗 Clickable Links: Terminal hyperlinks using OSC 8
Installation
Quick Install
|
The installer will:
- Download the latest mq-view binary for your platform
- Install it to
~/.local/bin/ - Update your shell profile to add mq-view to your PATH
Cargo
From crates.io (stable):
From git (latest):
Supported Languages
Enabled by default:
- Rust, JavaScript, TypeScript (+ TSX), Python
- HTML, CSS, JSON, YAML, TOML
- Bash/Shell, Ruby, SQL
- Elixir, mq
Available with the all-languages feature:
- Go, Java, Kotlin, Scala
- C, C++, Swift
- PHP, Lua, Clojure, Haskell, OCaml, Elm
- Dockerfile, Makefile
See Cargo.toml for the full list of lang-* feature flags if you only need
one or two extra languages instead of all of them.
Usage
As a CLI Tool
View a markdown file:
Pipe markdown content:
|
Mermaid Diagrams
Fenced code blocks tagged ```mermaid are rendered as ASCII art instead of
plain text when the diagram is a simple graph/flowchart:
graph TD
A[Start] --> B{Is it working?}
B -->|Yes| C[Great success]
B -->|No| D[Debug it]
This only understands a small subset of mermaid flowchart syntax (nodes, shapes, and edges with optional labels). Other diagram types (sequence, class, gantt, ...) and advanced flowchart syntax fall back to a regular, syntax-highlighted code block.
License
MIT