summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibMarkdown/Block.h
blob: bc5ec0e897237340934d0d1fd8538cd204b73d0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/StringView.h>
#include <AK/Vector.h>

namespace Markdown {

class Block {
public:
    virtual ~Block() { }

    virtual String render_to_html(bool tight = false) const = 0;
    virtual String render_for_terminal(size_t view_width = 0) const = 0;
};

}