beautiful-md 0.1.0

A CLI tool to format and beautify Markdown files
Documentation
#Heading Without Space
Some text here.
##Another Heading


Too many blank lines above.

|Name|Age|City|
|---|---|---|
|Alice|30|Stockholm|
|Bob|25|Göteborg|
|Charlie|35|Malmö|

- Item 1
* Item 2
+ Item 3
  - Nested item

1. First
1. Second
1. Third

```rust
fn main() {
    println!("Hello, world!");
}
```

~~~python
print("Hello")
~~~