Zig autodoc landing page for multiple modules in a single project

I have a project with a bunch of different modules/subcomponents in it. I love the auto generated docs for each module, but was wondering if there was a way to get it to emit a page that fits in with the rest that points at the various documentation pages generated by the subcomponents?

Thanks!

create a docs module, that imports and reexports the other modules. and use that docs module to generate the docs.

7 Likes

Of course, thanks!