I’ve been building a thing with Leptos and Tailwind CSS for a while. One challenge I’ve had is adding syntax highlighting to my code chunks. Note I am using pulldown-cmark to take a README.md to process it in html. Then adding the contents to a div. Something like: fn md_to_html(content:&str) ->String{let parser =pulldown_cmark::Parser::new(content);// Write to a new String buffer.letmut html_output =String::new();pulldown_cmark::html::push_html(&mut html_output, parser); html_output}#[se...