mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
code blocks get unwanted empty lines
This commit is contained in:
parent
ecf86b073e
commit
7249d02cff
@ -216,7 +216,12 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
if ($element['type'] === 'code')
|
if ($element['type'] === 'code')
|
||||||
{
|
{
|
||||||
isset($element['interrupted']) and $element['text'] .= "\n";
|
if (isset($element['interrupted']))
|
||||||
|
{
|
||||||
|
$element['text'] .= "\n";
|
||||||
|
|
||||||
|
unset ($element['interrupted']);
|
||||||
|
}
|
||||||
|
|
||||||
$element['text'] .= "\n".$matches[1];
|
$element['text'] .= "\n".$matches[1];
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
<p>Here's a regular code block:</p>
|
<p>Here's a code block:</p>
|
||||||
<pre><code><?php
|
<pre><code><?php
|
||||||
|
|
||||||
echo 'Hello World!';
|
$message = 'Hello World!';
|
||||||
|
echo $message;</code></pre>
|
||||||
?></code></pre>
|
|
||||||
<p>Here's one that holds a list:</p>
|
<p>Here's one that holds a list:</p>
|
||||||
<pre><code>- list item
|
<pre><code>- list item
|
||||||
- another list item</code></pre>
|
- another list item</code></pre>
|
@ -1,10 +1,9 @@
|
|||||||
Here's a regular code block:
|
Here's a code block:
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
echo 'Hello World!';
|
$message = 'Hello World!';
|
||||||
|
echo $message;
|
||||||
?>
|
|
||||||
|
|
||||||
Here's one that holds a list:
|
Here's one that holds a list:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user