I've just started playing around with the roxygen
package and I've very happy with the results so far. However I was wondering, is there a way to specify to roxygen
that it should ignore certain functions that are not user-accessible?
Specifically, I'd rather not have a .Rd
file pop up because I'm using the .onLoad()
hook in my package. This function is already documented in the base
package so there's no reason for me to re-document it.
@noRd
to suppress the creation on Rd files even if you have roxygen2 documentation. – Append