Markdown parser in TUI fails on numbered lists >= 10
#459 · Rust · ★ 10k · Apache-2.0 · updated 22d ago
Describe the bug In crates/astrid-cli/src/tui/render.rs, the markdown parser for numbered lists uses strip_prefix(|c: char| c.is_ascii_digit()). Since strip_prefix with a closure only matches a single character, it only consumes one digit. If a list item starts with 10. , it…