mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
LibMarkdown: Add a Text(String) constructor
This commit is contained in:
parent
445bd86533
commit
7640cb8ec4
2 changed files with 6 additions and 0 deletions
|
@ -47,6 +47,11 @@ static String unescape(const StringView& text)
|
|||
return builder.build();
|
||||
}
|
||||
|
||||
Text::Text(String&& text)
|
||||
{
|
||||
m_spans.append({ move(text), Style {} });
|
||||
}
|
||||
|
||||
String Text::render_to_html() const
|
||||
{
|
||||
StringBuilder builder;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue