johannhof / markdown.rs

Rust Markdown parsing library
Apache License 2.0
136 stars 44 forks source link

Fix out of bounds #46

Open sigaloid opened 3 years ago

sigaloid commented 3 years ago

Fixes #43 #45 Sometimes this iter over the Vec<Vec> would return an empty Vec meaning the call for c[0] would fail.

"0 " "- "

These two inputs would crash it. This filters it so only non-empty vec's are iter'd over

sigaloid commented 3 years ago

Fixes #47