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

11 lines
166 B
C++

#pragma once
#include "InlineNode.h"
struct Text : public InlineNode {
std::string text;
NodeKind getKind() const {
return NodeKind::Text;
}
};