mini_markdown
mini_markdown copied to clipboard
Not handling inline formatting of inline components outside of in paragraphs
trafficstars
For example, adding a link or a bold text in a list item will leave it unformatted and escaped.
use mini_markdown::render;
fn main() {
let res = render("* [test](./test.md) test");
println!("{}", res);
// <ul><li>[test](./test.md) test</li></ul>
}
Hey, sorry for the delayed reply. Thanks for pointing this out. I suspect this will come in when I get to adding the "inline" common mark tests. Progress is slow, but I'll try to prioritize that test set if this is important to you :)