From 1d1c1f1ca9d0c1c24b5e072d1786ca7be7762ee5 Mon Sep 17 00:00:00 2001 From: Suryaansh Rai <102371942+suryaanshrai@users.noreply.github.com> Date: Sat, 17 Jan 2026 22:34:53 +0530 Subject: [PATCH] Update quartz/plugins/emitters/contentIndex.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- quartz/plugins/emitters/contentIndex.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quartz/plugins/emitters/contentIndex.tsx b/quartz/plugins/emitters/contentIndex.tsx index 7b0f98cd3..a40bcd3b1 100644 --- a/quartz/plugins/emitters/contentIndex.tsx +++ b/quartz/plugins/emitters/contentIndex.tsx @@ -157,7 +157,7 @@ export const ContentIndex: QuartzEmitterPlugin> = (opts) => { } else if ((opts.rssTagsLimit ?? 0) > 0) { const tagCounts: Map = new Map() - // Count tags from all non-empty files (unless includeEmptyFiles is true) + // Count tag occurrences across all files in the index for (const [_, content] of linkIndex) { const tags = content.tags.flatMap(getAllSegmentPrefixes) for (const tag of new Set(tags)) {