diff --git a/includes/Pastedown.php b/includes/Pastedown.php index 6d8084e..72172ae 100644 --- a/includes/Pastedown.php +++ b/includes/Pastedown.php @@ -16,7 +16,7 @@ class Pastedown extends ParsedownExtra { if (preg_match('/^>[ ]?(.*)/', $Line['text'], $matches)) { $Block = array( - 'markup' => "" . pp_html_escape($matches[0]) . "", + 'markup' => "
" . pp_html_escape($matches[0]) . "
", 'extent' => strlen($matches[0]) ); @@ -29,7 +29,7 @@ class Pastedown extends ParsedownExtra { if (preg_match('/^<[ ]?(.*)/', $Line['text'], $matches)) { $Block = array( - 'markup' => "" . pp_html_escape($matches[0]) . "", + 'markup' => "
" . pp_html_escape($matches[0]) . "
", 'extent' => strlen($matches[0]) ); @@ -42,7 +42,7 @@ class Pastedown extends ParsedownExtra { if (preg_match('/^@[ ]?(.*)/', $Line['text'], $matches)) { $Block = array( - 'markup' => "" . pp_html_escape($matches[0]) . "", + 'markup' => "
" . pp_html_escape($matches[0]) . "
", 'extent' => strlen($matches[0]) );