Using Block Quotes

Markdown Block Quotes

Block quotes in Markdown are created by starting a paragraph with the > symbol, followed by a space:

> Block Quote
> Programming Tutorials
> Not just learning technology, but also dreams

The display result is as follows:

Using Block Quotes0

Nested Block Quotes

Block quotes can be nested. One > symbol indicates the outermost layer, two > symbols indicate the first level of nesting, and so on:

> Outer Layer
> > First Level of Nesting
> > > Second Level of Nesting

The display result is as follows:

Using Block Quotes0

Lists in Block Quotes

Example of using lists within block quotes:

> Block Quote with Lists
> 1. First Item
> 2. Second Item
> + First Item
> + Second Item
> + Third Item

The display result is as follows:

Using Block Quotes0

Block Quotes in Lists

To include a block quote within a list item, indent the > symbol with four spaces:

* First Item
> Programming Tutorials
> Not just learning technology, but also dreams
* Second Item
> Tool Usage
> Good tools can make your work more efficient

The display result is as follows:

Using Block Quotes0