showdown/dist
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
..
showdown.js feat(splitAdjacentBlockquotes): add option to split adjacent blockquote blocks 2017-12-22 09:54:23 +00:00
showdown.js.map feat(splitAdjacentBlockquotes): add option to split adjacent blockquote blocks 2017-12-22 09:54:23 +00:00
showdown.min.js feat(splitAdjacentBlockquotes): add option to split adjacent blockquote blocks 2017-12-22 09:54:23 +00:00
showdown.min.js.map feat(splitAdjacentBlockquotes): add option to split adjacent blockquote blocks 2017-12-22 09:54:23 +00:00