Files
md_reader/Cargo.toml
accusys f1463cd135 Add Mermaid diagram support with SVG export
- Add mermaid code block detection and rendering
- Integrate Mermaid.js v10 via CDN for diagram rendering
- Add SVG export with download button on hover
- Add preview command to open markdown in browser
- Add documentation for all supported diagram types
2026-03-18 21:28:13 +08:00

16 lines
275 B
TOML

[package]
name = "md_reader"
version = "0.1.0"
edition = "2021"
[dependencies]
pulldown-cmark = { version = "0.10", features = ["html"] }
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
dirs = "5"
open = "5"
[[bin]]
name = "md_reader"
path = "src/main.rs"