From c1286b946aca7f657e212e2689ce372a73e78be7 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Mon, 28 Apr 2025 10:28:03 -0400 Subject: [PATCH] docs: Use `
..
` tags for escaping markdown block --- helix-lsp-types/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helix-lsp-types/src/lib.rs b/helix-lsp-types/src/lib.rs index ddb333db3..fd668de5f 100644 --- a/helix-lsp-types/src/lib.rs +++ b/helix-lsp-types/src/lib.rs @@ -2568,9 +2568,9 @@ pub enum Documentation { /// /// The pair of a language and a value is an equivalent to markdown: /// -/// ```language -/// value -/// ``` +///
```${language}
+/// ${value}
+/// ```
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)] #[serde(untagged)] pub enum MarkedString {