Skip to content

Commit

Permalink
Remove incorrect </ul> after first item of lists
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkeenan authored Dec 21, 2017
1 parent 648b919 commit 9c24946
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions code.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,7 @@ function processItem(item, listCounters, images) {
|| gt === DocumentApp.GlyphType.HOLLOW_BULLET
|| gt === DocumentApp.GlyphType.SQUARE_BULLET) {
prefix = '<ul class="small"><li>', suffix = "</li>";

suffix += "</ul>";
}
else {
} else {
// Ordered list (<ol>):
prefix = "<ol><li>", suffix = "</li>";
}
Expand Down

0 comments on commit 9c24946

Please sign in to comment.