fn process_markdown(text: &str) -> Vec<Span<'static>>Expand description
Process markdown formatting (bold and italic) in text.
Returns a vector of styled Spans. This function handles:
- text -> Bold
- text -> Italic (dim)
Processing is done in sequence: asterisks first, then underscores.