Skip to content

Commit

Permalink
Remove list item indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored and kivikakk committed Jan 20, 2020
1 parent a8c5b24 commit 851c4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ impl<'a, 'o> CommonMarkFormatter<'a, 'o> {

if entering {
if parent.list_type == ListType::Bullet {
write!(self, " - ").unwrap();
write!(self, "- ").unwrap();
} else {
self.write_all(&listmarker).unwrap();
}
Expand Down

0 comments on commit 851c4bc

Please sign in to comment.