mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-04 18:23:39 +00:00
This api is useful when you want to render a markdown document to HTML, but you want to embed it in a existing html document.
27 lines
527 B
C++
27 lines
527 B
C++
/*
|
|
* Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/NonnullOwnPtrVector.h>
|
|
#include <AK/String.h>
|
|
#include <LibMarkdown/Block.h>
|
|
|
|
namespace Markdown {
|
|
|
|
class Document final {
|
|
public:
|
|
String render_to_html() const;
|
|
String render_to_inline_html() const;
|
|
String render_for_terminal(size_t view_width = 0) const;
|
|
|
|
static OwnPtr<Document> parse(const StringView&);
|
|
|
|
private:
|
|
NonnullOwnPtrVector<Block> m_blocks;
|
|
};
|
|
|
|
}
|