blockquote
Turns text into a Markdown blockquote by prefixing every line with > .
Empty lines get a bare > (no trailing space), so the quote stays one block. Line breaks are
kept as they are, including a trailing one, and a quote inside a quote nests naturally
(> > text).
Import
Section titled “Import”Cargo feature markdown (enabled by default). To compile only this module:
or in Cargo.toml:
Signature
Section titled “Signature”Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
text | &str | The text to quote, on one or several lines. |
Returns
Section titled “Returns”String — The quoted text.
