Devtools::document Index Page

Hi all,

@hadley says that one can include a .R file in your package to have a help page for the entire package (http://r-pkgs.had.co.nz/man.html#man-packages).

But, if I include the code provided there or follow the approach dplyr takes (https://github.com/tidyverse/dplyr/blob/master/R/dplyr.r + https://github.com/tidyverse/dplyr/blob/master/DESCRIPTION), I end up with two pages in the 00index.html of my package documentation. One is called like the package, the other is package-package:

Capture1

What should happen (at least if I look at the dplyr 00index.html) is that I have a single .Rd that is separated from the package functions at the top of my index :

Capture

I could not come up with a minimal reproducible example - if it helps the code for the package is on:

Cheers
Marco

Know that in dplyr index page, you also have two files. In section for letter D you will also find the dplyr package help page.
image

the only difference is that you don't have the letters links in the index, probably because you do not have a lot of functions... but that is to be confirmed.

This is correct behaviour — every alias appears in the index. We need two aliases here so that both (eg) ?dplyr and package?dplyr work.

1 Like