This create provided a macro to generated terminal styled text in ANSI escape sequence format using a markup language.
This macro compile your source at compile time, so it has no runtime overhead.
```rust use tuimarkupansi_macro::ansi;
let generated = ansi!("Press
// Use custom tag
let generated = ansi!(
"Press
println!("{}", generated); ```
Output:
![example-output]
The markup language used here is my tui markup language, See it's documentation for full syntax and supported style tags.
BSD-3-Clause-Clear, see [LICENSE].