-
Notifications
You must be signed in to change notification settings - Fork 480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tell Documenter about non-export
ed names that are part of my package's public API
#1506
Labels
Comments
Just thinking out loud here a bit:
|
Third action item here:
|
Agreed. This is also what the REPL help mode does. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In my package's documentation, I have a page
public.md
with the following contents:And a page
private.md
with the following contents:Obviously, all of the
export
ed 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 notexport
ed.Unfortunately, currently, these names will show up on the
private.md
page, and they will not show up on thepublic.md
page.Is there a way to tell Documenter that certain non-
export
ed 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?The text was updated successfully, but these errors were encountered: