
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
22 lines
380 B
C++
22 lines
380 B
C++
/*
|
|
* 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() const = 0;
|
|
virtual String render_for_terminal(size_t view_width = 0) const = 0;
|
|
};
|
|
|
|
}
|