md_render_lib 0.1.0

A lib for rendering markdown in terminal
Documentation
Code blocks without syntax highlighting:

```
Some plain
code block
   fooo
```

Or with syntax highlighting, eg, Rust:

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

Or Scala:

```scala
object HelloWorld {
  def main(args: Array[String]): Unit = {
    println("Hello, world!")
  }
}
```