Documenter.jl
Documenter.jl copied to clipboard
doctest for modules without documentation and for separate functions
It would be nice to be able to run doctest()
on:
- A module without a
*/docs/src/
directory. Right now it throws an error. - A separate function, in order to troubleshoot a single docstring.
For (1), you should be able to do it with doctest(MyModule, manual = false)
. (2) would indeed be nice to have.
Closing a duplicate of https://github.com/JuliaDocs/Documenter.jl/issues/1213