initial commit

This commit is contained in:
2026-05-14 01:49:48 +03:00
commit 208d34864e
15 changed files with 172 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#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;
}
};