aglow

Crates.ioaglow
lib.rsaglow
version0.1.0
created_at2025-12-14 21:58:16.592178+00
updated_at2025-12-14 21:58:16.592178+00
descriptionRender Markdown beautifully in the terminal 🔥
homepagehttps://molten.dev
repositoryhttps://github.com/moltenlabs/aglow
max_upload_size
id1985169
size38,854
Chris Mathew (chriscmathew-dorsia)

documentation

https://docs.rs/aglow

README

✨ Aglow

Render Markdown beautifully in the terminal.

Crates.io Documentation License


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 aglow::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)
  • light
  • molten (Molten Labs brand colors)

Installation

cargo add aglow

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

Built with ✨ by Molten Labs

Commit count: 0

cargo fmt