-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Markdown lists fail to parse #326
Comments
Thanks for reporting. I hope to be able to make time to investigate this over the next few days. |
Note that the synhtml example works fine, it seems to be a problem specific to the classed spans. syntect on master [?] is 📦 v4.5.0 via 🦀 v1.49.0
❯ cargo run --example synhtml -- test.md
Finished dev [unoptimized + debuginfo] target(s) in 0.04s
Running `target/debug/examples/synhtml test.md`
<head><title>test.md</title><style>
pre {
font-size:13px;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}</style></head>
<body style="background-color:#2b303b;">
<pre style="background-color:#2b303b;">
<span style="color:#bf616a;">* alpha
</span><span style="color:#bf616a;">* bravo
</span><span style="color:#bf616a;">* charlie
</span></pre>
</body> After repurposing the println!("----");
use crate::util::debug_print_ops;
debug_print_ops(line, &ops); to the
If we look at the sequence, it seems fine - I think we'll need to store the |
Reproduce
Prep
Works
src/main.rs
:Breaks
src/main.rs
:The text was updated successfully, but these errors were encountered: