What is Aglow?
When something is aglow, it's illuminated and beautiful. This crate makes your Markdown documents glow with color and style in the terminal.
Quick Start
use render;
let markdown = r#"
# Welcome
This is **bold** and *italic* text.
```rust
fn main() {
println!("Hello!");
}
"#;
println!("{}", render(markdown));
---
## CLI Usage
```bash
# Install
cargo install aglow
# Render a file
aglow README.md
# Pipe content
cat doc.md | aglow
# Use themes
aglow README.md --theme molten
Themes
dark(default)lightmolten(Molten Labs brand colors)
Installation
Ecosystem
Part of the Molten Labs open source ecosystem:
| Crate | Description |
|---|---|
| molten_brand | Design tokens & colors |
| glyphs | ANSI escape sequences |
| lacquer | Terminal styling |
| tuyere | TUI framework |
| scoria | TUI components |
| chant | Shell glamour |
| aglow | Markdown renderer (you are here) |
| censer | Pretty logging |
License
MIT OR Apache-2.0