Remove extra paragraph from generated changelogs, restore paragraph margins

The CSS (changed in bca76b8f) was removing space between actual paragraphs in
lists. This was intended to address excess padding in changelogs, but that is
resolved here by removing blank lines surrounding nested lists. This still
displays properly on GitHub/Reddit and presumably other Markdown implementations
as well.
develop
lethosor 2020-11-15 17:39:31 -05:00
parent 85dfb67004
commit 14eeeeedc0
No known key found for this signature in database
GPG Key ID: 76A269552F4F58C1
2 changed files with 0 additions and 7 deletions

@ -201,10 +201,8 @@ def print_changelog(versions, all_entries, path, replace=True, prefix=''):
continue
elif entry.children:
write('- ' + entry.feature + ':')
write('')
for child in entry.children:
write(' - ' + child)
write('')
else:
write('- ' + entry.feature)
write('')

@ -57,11 +57,6 @@ div.body {
min-width: unset;
}
div.body li > p {
margin-top: 0;
margin-bottom: 0;
}
span.pre {
overflow-wrap: break-word;
}