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