Although blockquotes are simple to create, small syntax mistakes can prevent them from rendering correctly. Here are the most common issues and how to fix them.
Forgetting the Space After >
Incorrect:
>This is a blockquote.
Correct:
> This is a blockquote.
While some Markdown parsers accept both formats, adding a space after > improves readability and follows common Markdown conventions.
Missing the > on Multiple Lines
Incorrect:
> This is the first line.
This line is outside the blockquote.
Correct:
> This is the first line.
> This line is also inside the blockquote.
Every line that belongs to the blockquote should begin with the > character.
Incorrect Nesting
Incorrect:
>> First level
> Second level
Correct:
> First level
>> Second level
>>> Third level
Maintain a logical nesting order to keep the quote structure easy to understand.
Using Too Many Nested Levels
Although Markdown allows multiple levels of nesting, deeply nested blockquotes quickly become difficult to read.
Instead of nesting five or more levels, consider breaking the content into separate sections or using headings instead.
Overusing Blockquotes
Not every paragraph should be inside a blockquote.
Use blockquotes only for:
- Notes
- Tips
- Warnings
- Important information
- Referenced quotations
For normal explanations, use regular paragraphs.