mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 05:27:45 +00:00
LibMarkdown: Implement introspection of the document tree
This commit is contained in:
parent
aca01932bd
commit
24e7196158
23 changed files with 319 additions and 0 deletions
26
Userland/Libraries/LibMarkdown/Forward.h
Normal file
26
Userland/Libraries/LibMarkdown/Forward.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Ben Wiederhake <BenWiederhake.GitHub@gmx.de>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Markdown {
|
||||
|
||||
class Block;
|
||||
class Document;
|
||||
class Text;
|
||||
|
||||
class BlockQuote;
|
||||
class CodeBlock;
|
||||
class ContainerBlock;
|
||||
class Heading;
|
||||
class HoriziontalRule;
|
||||
class List;
|
||||
class Paragraph;
|
||||
class Table;
|
||||
|
||||
class Visitor;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue