mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
da328f2527
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
9 lines
226 B
HTML
9 lines
226 B
HTML
<blockquote>
|
|
<h1 id="blockquote1">Block quote 1</h1>
|
|
<p>This is my first block quote.</p>
|
|
</blockquote>
|
|
<blockquote>
|
|
<h1 id="blockquote2">Block quote 2</h1>
|
|
<p>This is my second block quote.</p>
|
|
</blockquote>
|