termimad icon indicating copy to clipboard operation
termimad copied to clipboard

A library to display rich (Markdown) snippets and texts in a rust terminal application

Results 21 termimad issues
Sort by recently updated
recently updated
newest added

# 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)

enhancement

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,...

enhancement

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: ![image2](https://user-images.githubusercontent.com/25393315/76120309-d75b6880-5fb6-11ea-9a0c-b6bc05bfef0a.png) ![image4](https://user-images.githubusercontent.com/25393315/76120310-d88c9580-5fb6-11ea-8f36-79b403a352b5.png) ![image3](https://user-images.githubusercontent.com/25393315/76120312-d88c9580-5fb6-11ea-8338-b296ce0ecc43.png) ![image1](https://user-images.githubusercontent.com/25393315/76120314-d9252c00-5fb6-11ea-8ecf-5f5bc7a1a1b5.png)

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...

enhancement

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...

enhancement

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