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