mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:17:35 +00:00
LibMarkdown: Have one newline between lists in terminal renders
Before this patch the markdown lists would have two space inbetween each item. This patch removes one of these newlines for a nicer render.
This commit is contained in:
parent
741c871bc1
commit
88eb7a634f
1 changed files with 0 additions and 1 deletions
|
@ -48,7 +48,6 @@ String List::render_for_terminal(size_t) const
|
||||||
else
|
else
|
||||||
builder.append("* ");
|
builder.append("* ");
|
||||||
builder.append(item->render_for_terminal());
|
builder.append(item->render_for_terminal());
|
||||||
builder.append("\n");
|
|
||||||
}
|
}
|
||||||
builder.append("\n");
|
builder.append("\n");
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue