A bit of a naive question regarding documenter indexing :
I have a package with a public API, and some internal developer functions that are mostly of no interest to users, with a few potential exceptions for power users.
I’d like to create a page detailing some of the internals for those exceptions. But there doesn’t seem to be a straightforward way of tagging functions with some tag that could then be used with @index
in some way or another as far as I can see ?
The way I’ve thought of going about this is to create a dummy module, export the relevant functions and use that module as a filter.
Is this the standard way of doing this or am I missing some more straightforward way of accomplishing the same goal ?