aglow 0.1.0

Render Markdown beautifully in the terminal 🔥
Documentation

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