From 78055633d3a19f4d0124707b73acba7cd8826bad Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Thu, 4 Sep 2025 03:31:08 +0000 Subject: [PATCH] help: Fix broken blockquote examples. --- starlight_help/src/content/docs/format-a-quote.mdx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/starlight_help/src/content/docs/format-a-quote.mdx b/starlight_help/src/content/docs/format-a-quote.mdx index a81784f821..712547bdcf 100644 --- a/starlight_help/src/content/docs/format-a-quote.mdx +++ b/starlight_help/src/content/docs/format-a-quote.mdx @@ -38,14 +38,21 @@ import QuoteIcon from "~icons/zulip-icon/quote"; 1. To create a multi-line quote, type `>` followed by a space and some text: + ``` > a multi-line - > quote on two lines - > To create a multi-paragraph quote, use triple backticks and the word quote - > (\`\`\`\`quote\`) followed by some text and triple backticks at the end: + quote on two lines + ``` + + To create a multi-paragraph quote, use triple backticks and the word quote + (```quote) followed by some text and triple backticks at the end: + + ```` ```quote A multi-paragraph + quote in two paragraphs ``` + ````