//! Utilities for building Markdown texts.
//!
//! Markdown is used because this is the format used by the LSP protocol for rich text.
/// Horizontal rule.
pub const RULE: &str = "---\n";
/// or //! - both have 3 characters we often want to skip.
pub const COMMENT_TOKEN_PREFIX_LEN: usize = 3;
/// Surround the given code with `cairo` fenced code block.