| Crates.io | md-forge |
| lib.rs | md-forge |
| version | 0.1.0 |
| created_at | 2025-07-18 16:28:30.743373+00 |
| updated_at | 2025-07-18 16:28:30.743373+00 |
| description | A blazingly fast, lightweight Markdown to HTML converter built entirely in Rust |
| homepage | https://github.com/Aditya-1304/md-to-html |
| repository | https://github.com/Aditya-1304/md-to-html |
| max_upload_size | |
| id | 1759163 |
| size | 12,955 |
A blazingly fast, lightweight Markdown to HTML converter built entirely in Rust. Convert your Markdown documents to clean, semantic HTML with zero dependencies.
**bold**, *italic*, and ***bold italic*** textcargo install md-forge
git clone https://github.com/yourusername/md-forge
cd md-forge
cargo build --release
md-forge input.md output.html
# Convert a README.md to HTML
md-forge README.md README.html
# Convert documentation
md-forge docs/guide.md public/guide.html
# H1 Header
## H2 Header
### H3 Header
#### H4 Header
##### H5 Header
###### H6 Header
**Bold text**
*Italic text*
***Bold and italic text***
- Unordered list item
- Another item
- Third item
1. Ordered list item
2. Second item
3. Third item
[Link text](https://example.com)
[Rust Documentation](https://doc.rust-lang.org/)
> This is a blockquote
> It can span multiple lines
```
Plain code block
```
```rust
// Code block with language specification
fn main() {
println!("Hello, world!");
}
```