Feat: extend CI to cover desktop

This commit is contained in:
2026-01-30 21:19:48 +01:00
parent 6c9ec9a05f
commit bdba58312c
5 changed files with 61 additions and 17 deletions

View File

@@ -245,6 +245,7 @@ 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();
@@ -315,6 +316,11 @@ 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);
}