How to Write a Blockquote in Markdown
And how to nest them
A blockquote in Markdown is any line that starts with a >. It renders as an indented quote block, the thing you use to quote a source, pull out a callout, or paste in an answer you are responding to.
The whole feature is that one character. The only things worth knowing are how to carry it across paragraphs, how to nest it, and why it sometimes stops early.
The blockquote, at a glance
| What | How | Note |
|---|---|---|
| Single line | > quoted text | One line, one > |
| Multiple paragraphs | > para one, then a > line, then > para two | The blank gap needs its own > |
| Nested | >> for a quote inside a quote | Add more > for more levels |
| With other Markdown | > - item, or > **bold** | Put the > first, then normal Markdown |
Put together, it looks like this:
> This is a blockquote.
> It can run across several lines.
>
> > And this is nested one level deeper.
Back to normal text (no >). Multi-paragraph and nested quotes
- Across paragraphs: keep a
>on every line. For the gap between two quoted paragraphs, use a line that is just a>. A truly empty line ends the quote. - Nesting:
>>makes a quote inside a quote,>>>goes one deeper. Handy for a reply to a reply, or a source quoting another source. - Content inside: after the
>, write normal Markdown. A list, a code block, bold, links, all work inside a quote.
Why a blockquote stops halfway
The one failure mode: a line without a >. Every line that belongs to the quote needs its own marker, including the blank-looking gaps between paragraphs. Miss a single > and everything after it drops back into normal text. If your quote is falling apart in the middle, that is almost always why. For the general question of what renders and what does not, see how to write Markdown.
A common use: quoting an AI answer
Blockquotes are handy when you are keeping notes on an AI answer: quote the part you are reacting to, then write your own note underneath, outside the quote. If you are saving AI output as Markdown in the first place, see how to keep the formatting of an AI answer and why AI uses Markdown.
Previewing blockquotes with NoteLoom
Nesting and multi-line quotes are easy to get slightly wrong, and it does not show in raw text. NoteLoom is an editor that reads and writes local .md files in the browser: its live and reading views render the quote as you type, so you can see the block form and check the nesting, then fix it in the source view.
To be clear about the boundaries: NoteLoom has no AI. It will not write or reword your quotes. It renders and saves your local file, and the writing stays with you.
How you use it: open app.noteloom.cc in Chrome / Edge / Arc, mount a local folder, and write in the source view while the live view shows the quote. Saved straight to your disk, no cloud, no account.
FAQ
How do I write a blockquote in Markdown?
How do I write a multi-paragraph blockquote?
How do I nest a blockquote?
Can I put a list or code inside a blockquote?
Why did my blockquote stop halfway?
Can NoteLoom preview my blockquotes?
Can I do this with NoteLoom on my phone or in Safari?
See your quotes render as you type
Open NoteLoom in Chrome / Edge / Arc, mount a local folder, and write in the source view while the live view shows the blockquote and its nesting. Saved straight back to your disk, no software to install and no account to sign up for.
Open NoteLoom and try it