Files
mdtex-compiler/include/ast/BlockNode/Header.h
T
2026-05-14 01:49:48 +03:00

12 lines
229 B
C++

#pragma once
#include "BlockNode.h"
struct Header : public BlockNode {
std::string headerText;
std::vector<std::unique_ptr<InlineNode>> children;
NodeKind getKind() const {
return NodeKind::Header;
}
};