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