showdown/test/features/splitAdjacentBlockquotes
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
..
basic.html feat(splitAdjacentBlockquotes): add option to split adjacent blockquote blocks 2017-12-22 09:54:23 +00:00
basic.md feat(splitAdjacentBlockquotes): add option to split adjacent blockquote blocks 2017-12-22 09:54:23 +00:00
multiline-paragraph.html feat(splitAdjacentBlockquotes): add option to split adjacent blockquote blocks 2017-12-22 09:54:23 +00:00
multiline-paragraph.md feat(splitAdjacentBlockquotes): add option to split adjacent blockquote blocks 2017-12-22 09:54:23 +00:00