Files
mdtex-compiler/include/ast/InlineNode/Text.h
T
2026-05-18 20:19:17 +03:00

13 lines
279 B
C++

#pragma once
#include "ast/InlineNode/InlineNode.h"
#include "utils/shorten.hpp"
namespace ast {
struct Text : public InlineNode {
std::string text;
NodeKind getKind() const override;
void repr(std::ostream &os, int indent) const override;
};
}