We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The doc string of the Documenter module uses $(EXPORTS) to automatically generate a list of names exported by the module:
Documenter
$(EXPORTS)
Documenter.jl/src/Documenter.jl
Line 11 in 71e9f40
When I try to replicate this code in a fresh project (say Example.jl), I receive the error
~/Example.jl/docs% julia make.jl ERROR: LoadError: UndefVarError: EXPORTS not defined
How can I access the EXPORTS variable? I could not find it defined anywhere in the Documenter.jl repository:
EXPORTS
Documenter.jl
~/Documenter.jl% git grep 'EXPORTS' src/Documenter.jl:11:$(EXPORTS)
The text was updated successfully, but these errors were encountered:
It's from DocStringExtensions: https://docstringextensions.juliadocs.org/latest/#DocStringExtensions.EXPORTS
Sorry, something went wrong.
Thanks @mortenpi, I will close the issue.
No branches or pull requests
The doc string of the
Documenter
module uses$(EXPORTS)
to automatically generate a list of names exported by the module:Documenter.jl/src/Documenter.jl
Line 11 in 71e9f40
When I try to replicate this code in a fresh project (say Example.jl), I receive the error
How can I access the
EXPORTS
variable? I could not find it defined anywhere in theDocumenter.jl
repository:The text was updated successfully, but these errors were encountered: