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)) {