showdown/test/features/splitAdjacentBlockquotes/basic.md
Estevao Soares dos Santos da328f2527 feat(splitAdjacentBlockquotes): add option to split adjacent blockquote blocks
With this option enabled, this:

```md
> some text

> some other text
```

witll result in:

```html
<blockquote>
    <p>some text</p>
</blockquote>
<blockquote>
    <p>some other text</p>
</blockquote>
```

This is the default behavior of GFM.

Closes #477
2017-12-22 09:54:23 +00:00

8 lines
107 B
Markdown

> # Block quote 1
>
> This is my first block quote.
> # Block quote 2
>
> This is my second block quote.