Is there a way to automatically generate documentation for all functions in a module

It seems from the documentation for Documenter.jl that you need to explicitly list the functions that you want the documentation generated for in an index.md file.

Is there a way to automatically generate documentation for every function in the module for which a docstring exists? It seems a bit tedious to have to manually list all of them again in an index file. If I’ve written a docstring for something then most likely I’ll want it to be included in the documentation as well, right?

Use @autodocs: Syntax · Documenter.jl

3 Likes