Currently you can customize the installation to hide the table of contents if there are no items by doing this: ```js customizeTOC: (toc) => { if (toc.children[0].children.length > 0) { return toc; } return false; }, ``` I think this should be default functionality! 🙂