-
Notifications
You must be signed in to change notification settings - Fork 37
Closed
Milestone
Description
We don't currently have a package-level roxygen documentation article.
Conventionally, the way this would be done is by documenting a NULL object in Then users would be able to land there with pkgnet.R with the name pkgnet and setting @docType package.?pkgnet.
UPDATE: It looks like the standard way to do this nowadays is to document a string object with the value "_PACKAGE". This is a special keyword for roxygen2 to know you're making a package documentation article, to create the right names, and to fill in some of the details (e.g., list of authors).
So the two things of note to do are:
- Document a string
"_PACKAGE" - Use
@keywords internalso that you don't have apkgnetandpkgnet-packagearticle show up in the index, but they are still accessible if you?pkgnetor?pkgnet-package.
References:
Reactions are currently unavailable