
This also improves Commonmark coverage, e.g. it fixes tests HTML_blocks_ex179_2894..2906 and Lists_ex308_5439..5457. In other words, we go from 271 out of 652 to 273 out of 652.
33 lines
752 B
C++
33 lines
752 B
C++
/*
|
|
* Copyright (c) 2021, Ben Wiederhake <BenWiederhake.GitHub@gmx.de>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/OwnPtr.h>
|
|
#include <AK/String.h>
|
|
#include <LibMarkdown/Block.h>
|
|
#include <LibMarkdown/LineIterator.h>
|
|
|
|
namespace Markdown {
|
|
|
|
class CommentBlock final : public Block {
|
|
public:
|
|
CommentBlock(String const& comment)
|
|
: m_comment(comment)
|
|
{
|
|
}
|
|
virtual ~CommentBlock() override { }
|
|
|
|
virtual String render_to_html(bool tight = false) const override;
|
|
virtual String render_for_terminal(size_t view_width = 0) const override;
|
|
virtual RecursionDecision walk(Visitor&) const override;
|
|
static OwnPtr<CommentBlock> parse(LineIterator& lines);
|
|
|
|
private:
|
|
String m_comment;
|
|
};
|
|
|
|
}
|