From 53e46781b1fb6966eb0379b26dc12f7c75ebd3f4 Mon Sep 17 00:00:00 2001 From: Mathias Bergqvist Date: Thu, 23 Apr 2026 16:00:31 +0200 Subject: [PATCH] feat(pipeline): resolve proposed pages against inventory before writing --- ingestion/internal/pipeline/pipeline.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ingestion/internal/pipeline/pipeline.go b/ingestion/internal/pipeline/pipeline.go index e4c4b97..1e6c924 100644 --- a/ingestion/internal/pipeline/pipeline.go +++ b/ingestion/internal/pipeline/pipeline.go @@ -57,7 +57,8 @@ func Run(ctx context.Context, cfg Config, brainDir, content, source string, dryR allWarnings = append(allWarnings, warnings...) } - merged := mergeAll(allPages) + resolved := Resolve(allPages, inventory) + merged := mergeAll(resolved) date := time.Now().UTC().Format("2006-01-02") var written []string