Merge pull request #104 from ahluntang/master

Remove extra <br> after list.
This commit is contained in:
Denis Kisselev 2013-12-16 00:49:18 -08:00
commit 1261c88d1c

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;
@ -2929,4 +2929,4 @@ negligence or otherwise) arising in any way out of the use of this
software, even if advised of the possibility of such damage. software, even if advised of the possibility of such damage.
*/ */
?> ?>