termimad
termimad copied to clipboard
A library to display rich (Markdown) snippets and texts in a rust terminal application
# reproduce ``` git clone . cargo run --example render-input-markdown ``` # error msg > Compiling termimad v0.20.2 (/Users/andyjado/Projects/termimad) error: linking with `cc` failed: exit status: 1 | = note:...
It seems like it'd be easy to add syntax highlighting to code fences via [syntect](https://crates.io/crates/syntect)
Hi, Is there a way to print rendered markdown to the terminal with everything indented, say a few spaces? I don't want to use an alternate screen, or scrollable frame,...
Hi, I have this when I wrap bulleted text: ``` - [x] gfsdsdfsdfsdfsdf sdf sd fsd fsdf sdfsdf ``` Can the 2nd+ lines also be made to be as indented...
I'd like to have my `MadSkin` come from a user-supplied theme, like `colors.yml`. I don't mind just making a newtype around MadSkin to do so, but I noticed the code...
Hey @Canop, Here are those screenshots I said I'd get you a bit back. :slightly_smiling_face:    
Is there a way to scroll to the end of a TextView/MadView? Currently I'm just running `view.try_scroll_pages(90000);` which works completely fine, but I feel like there should be a better...
Is there a way to indent code blocks? I see that you can set the alignment to left, center, or right, but can I add four spaces indent to a...
I do not want to print tables in certain cases but want to use normal |hier|there| How can I reset the style of tables?
This is a minimum code example for incrementally printing markdown. This should close #42