Feat: fix scope / spectrum / vumeter

This commit is contained in:
2026-01-30 21:50:00 +01:00
parent bdba58312c
commit e1c4987db5
4 changed files with 27 additions and 18 deletions

View File

@@ -245,7 +245,6 @@ fn preprocess_underscores(md: &str) -> String {
fn parse_markdown(md: &str) -> Vec<RLine<'static>> {
let processed = preprocess_underscores(md);
eprintln!("DEBUG parse_markdown: processed={:?}", &processed[..100.min(processed.len())]);
let text = minimad::Text::from(processed.as_str());
let mut lines = Vec::new();
@@ -316,11 +315,6 @@ fn compound_to_spans(compound: Compound, base: Style, out: &mut Vec<Span<'static
let theme = theme::get();
let mut style = base;
// DEBUG: Check if bold flag is being set
if compound.bold || compound.src.contains("**") {
eprintln!("compound: bold={} src={:?}", compound.bold, compound.src);
}
if compound.bold {
style = style.add_modifier(Modifier::BOLD);
}