Block Quotes
Quote text with blockquote syntax
Markdown Source
> Single line quote > Multi-line quote > continues here > > Nested quote
Rendered HTML Output
<blockquote><p>Single line quote</p></blockquote> <blockquote><p>Multi-line quote continues here</p></blockquote> <blockquote><blockquote><p>Nested quote</p></blockquote></blockquote>
Explanation
Start each line with >. Multiple > create nested blockquotes. Blockquotes can contain other Markdown (lists, code, headings).
Tips & Common Mistakes
- Add a space after > for readability. Blockquotes need a blank line before and after to be parsed correctly.
Related Markdown Examples
Try It
Markdown Preview Tool →All Examples
Markdown Tables with AlignmentImages with Alt TextFenced Code Blocks with Syntax HighlightingLinks (Inline, Reference, Auto)Headings H1–H6Bold, Italic, StrikethroughOrdered and Unordered ListsHorizontal RulesTask Lists / CheckboxesFootnotesEmoji ShortcodesNested ListsEscaping Special CharactersDefinition Lists