Feat: extend CI to cover desktop
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user