Remove extra <br> after list.

This commit is contained in:
Ah-Lun Tang 2013-12-10 17:34:10 +01:00
parent 6b0fb5b7f0
commit 04274d6872

View File

@ -1023,7 +1023,7 @@ class Markdown_Parser {
$result = $this->processListItems($list, $marker_any_re); $result = $this->processListItems($list, $marker_any_re);
$result = $this->hashBlock("<$list_type>\n" . $result . "</$list_type>"); $result = $this->hashBlock("<$list_type>\n" . $result . "</$list_type>");
return "\n". $result ."\n\n"; return $result ."\n\n";
} }
var $list_level = 0; var $list_level = 0;