1 2 3 4 5 6 7
pub fn markdown_code_block(lang: &str, content: &str) -> String { format!( "```{} {}```", lang, content ) }