biome-markdown
v0.1.0
Published
Fast Markdown formatter inspired by Biome, built in Rust. Automatically formats Markdown tables with proper alignment.
Downloads
2
Maintainers
Readme
biome-markdown
Fast Markdown formatter inspired by Biome, built in Rust. Automatically formats Markdown tables with proper alignment.
Installation
From source
git clone https://github.com/rizkyviali/biome-markdown
cd biome-markdown
cargo build --release
# Binary will be at ./target/release/biome-markdownUsing cargo
cargo install biome-markdownUsage
Command Line
Check if files need formatting:
biome-markdown --check .
biome-markdown --check content/
biome-markdown --check file.mdFormat files in place:
biome-markdown --write .
biome-markdown --write content/
biome-markdown --write file.mdPackage.json Scripts
Add to your package.json (similar to biome-tailwind-sorter):
{
"scripts": {
"format-markdown": "biome-markdown --write content/",
"format-markdown:check": "biome-markdown --check content/"
}
}What it formats
Currently focuses on Markdown tables:
Before:
| Adobe |Alternatif |
| ---- | ---- |
| Premiere Pro | Davinci Resolve |
| After Effects | Natron |
| Photoshop | Gimp |After:
| Adobe | Alternatif |
|---------------|-----------------|
| Premiere Pro | Davinci Resolve |
| After Effects | Natron |
| Photoshop | Gimp |Features
- ⚡ Fast: Built in Rust for maximum performance
- 🎯 Focused: Currently specializes in table formatting
- 🛠️ Biome-inspired: Same CLI interface as other Biome tools
- 🔧 Zero dependencies: No Node.js required for runtime
Similar Tools
biome-tailwind-sorter- for Tailwind class sorting@biomejs/biome- for JavaScript/TypeScript formatting
Development
Running tests
cargo testBuilding
cargo build --release☕ Support
If this project helps you, consider supporting its development:
License
MIT
