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

12 lines
220 B
C++

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