You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my package's documentation, I have a page public.md with the following contents:
# Public API```@autodocsModules = [MyPackage]Public = truePrivate = false```
And a page private.md with the following contents:
# Private API (Internals)```@autodocsModules = [MyPackage]Public = falsePrivate = true```
Obviously, all of the exported names in my package are part of the public API. However, the converse is false. There are some names in my package that part of the public API but are not exported.
Unfortunately, currently, these names will show up on the private.md page, and they will not show up on the public.md page.
Is there a way to tell Documenter that certain non-exported names are actually part of the public API, so that they do show up under the public names and do not show up under the private names?