help: Fix broken blockquote examples.

This commit is contained in:
Alex Vandiver
2025-09-04 03:31:08 +00:00
committed by Tim Abbott
parent 9abc3e635a
commit 78055633d3

View File

@@ -38,14 +38,21 @@ import QuoteIcon from "~icons/zulip-icon/quote";
<StartComposing />
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
(<code>```quote</code>) followed by some text and triple backticks at the end:
````
```quote
A multi-paragraph
quote in two paragraphs
```
````
</FlattenedSteps>
</TabItem>
</Tabs>