parsedown/tests/test_data/blockquote.md
hkdobrev 87c0b4264a Renamed tests/tests to tests/test_data
When looking at your folder structure, it is easier to grasp that the .md and .html files are just your data for the tests
2013-07-20 09:06:33 +03:00

24 lines
417 B
Markdown

Here's a regular blockquote:
> This is a blockquote.
Here's one with no space after the ">":
>This is a blockquote.
Here's one with multiple paragraphs:
> This is line one.
>
> This is line two.
Here's one with multiple types of blocks:
> This is a quoted paragraph.
>
> - This is a list item of a quoted list.
> - This is another list item.
>
> > This is a nested quote block.
>
> This is another paragraph.