tui-markdown 0.3.7

A simple library for converting markdown to a Rataui Text value
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
source: tui-markdown/src/lib.rs
expression: highlighted_code_indented
---
```rust
fn main() {
    // This is a comment
    HelloWorldBuilder::new()
        .with_text("Hello, highlighted code!")
        .build()
        .show();
                
}
```