Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: enhance toc UX

the3ash 1ca94b38 5075638d

+7
+7
src/components/ui/TableOfContents.astro
··· 74 74 } 75 75 }) 76 76 77 + // Hide TOC if there are no headings (only title) 78 + const tocContainer = document.querySelector('.toc-container') 79 + if (tocContainer && tocItems.length === 0) { 80 + tocContainer.style.display = 'none' 81 + return 82 + } 83 + 77 84 // Clear existing TOC 78 85 tocList.innerHTML = '' 79 86