1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:17:35 +00:00

LibMarkdown: Render lines to terminal instead of a single string

With this patch, the blocks in a markdown document render a vector of
lines. These lines get concatenated in Document::render_to_terminal, so
this does not change any external APIs of LibMarkdown.

This change makes it possible to indent individual lines in the rendered
markdown. So, rendering blockquotes in a similar way to code blocks :^)
This commit is contained in:
Arda Cinar 2022-12-23 12:25:00 +03:00 committed by Andreas Kling
parent 7a4b912ece
commit 5cc984d74c
20 changed files with 85 additions and 55 deletions

View file

@ -6,15 +6,17 @@
#include <AK/Debug.h>
#include <AK/StringBuilder.h>
#include <AK/Vector.h>
#include <LibMarkdown/Table.h>
#include <LibMarkdown/Visitor.h>
namespace Markdown {
DeprecatedString Table::render_for_terminal(size_t view_width) const
Vector<DeprecatedString> Table::render_lines_for_terminal(size_t view_width) const
{
auto unit_width_length = view_width == 0 ? 4 : ((float)(view_width - m_columns.size()) / (float)m_total_width);
StringBuilder builder;
Vector<DeprecatedString> lines;
auto write_aligned = [&](auto const& text, auto width, auto alignment) {
size_t original_length = text.terminal_length();
@ -42,10 +44,13 @@ DeprecatedString Table::render_for_terminal(size_t view_width) const
write_aligned(col.header, width, col.alignment);
}
builder.append('\n');
lines.append(builder.build());
builder.clear();
for (size_t i = 0; i < view_width; ++i)
builder.append('-');
builder.append('\n');
lines.append(builder.build());
builder.clear();
for (size_t i = 0; i < m_row_count; ++i) {
bool first = true;
@ -60,12 +65,13 @@ DeprecatedString Table::render_for_terminal(size_t view_width) const
size_t width = col.relative_width * unit_width_length;
write_aligned(cell, width, col.alignment);
}
builder.append('\n');
lines.append(builder.build());
builder.clear();
}
builder.append('\n');
lines.append("");
return builder.to_deprecated_string();
return lines;
}
DeprecatedString Table::render_to_html(bool) const