Generate markdown blockquotes with nested levels.
Blockquotes are used to highlight quoted text, important notes, or to visually separate content sections in markdown documents.
Use the greater-than symbol (>) at the start of each line:
> This is a blockquote. > It can span multiple lines.
Add > on blank lines between paragraphs:
> First paragraph in the quote. > > Second paragraph in the quote.
Use multiple > symbols for nesting:
> Level 1 quote >> Level 2 nested quote >>> Level 3 deeply nested quote > > Back to level 1
You can include other markdown formatting within blockquotes:
> ### Heading in Quote > > Paragraph with **bold** and *italic* text. > > - List item 1 > - List item 2 > > Code: `inline code`
GitHub supports special callout syntax (preview feature):
> [!NOTE] > Useful information that users should know. > [!TIP] > Helpful advice for doing things better. > [!IMPORTANT] > Key information users need to know. > [!WARNING] > Urgent info that needs immediate attention. > [!CAUTION] > Advises about risks or negative outcomes.
Add attribution after the quote:
> The only way to do great work is to love what you do. > > — Steve Jobs
Blockquotes improve accessibility by:
Simple Quote:
> This is a quote.
Nested:
> Quote >> Nested quote
With Citation:
> Great quote here. > > — Author
Special syntax for alerts:
[!NOTE] - Blue, info[!TIP] - Green, success[!IMPORTANT] - Purple, key info[!WARNING] - Orange, alert[!CAUTION] - Red, danger