//! Utilities for building Markdown texts.
//!//! Markdown is used because this is the format used by the LSP protocol for rich text.
/// Horizontal rule.
pubconstRULE:&str="---\n";/// Surround the given code with `cairo` fenced code block.
pubfnfenced_code_block(code:&str)-> String{format!("```cairo\n{code}\n```\n")}