summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibMarkdown/Document.h
blob: 154fe7d8029274f6ca7f0795263a5697f45cf29b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * 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_for_terminal(size_t view_width = 0) const;

    static OwnPtr<Document> parse(const StringView&);

private:
    NonnullOwnPtrVector<Block> m_blocks;
};

}