Lists are now prepended with <p></p> to add spacing.

master
kts 2014-11-30 23:04:57 -08:00
parent 275ec64dd1
commit 9f541689a0
1 changed files with 1 additions and 0 deletions

View File

@ -369,6 +369,7 @@ if ($settings{'toc'}) {
} elsif ($_->{type} == TYPE_SPACER) {
print("<hr />\n");
} elsif ($_->{type} == TYPE_LIST) {
printf("<p></p>"); # @@ should this be optional?
printList($_);
}
$previous_type = $_->{type};