pkgdown
pkgdown copied to clipboard
Generate static html documentation for an R package
:sweat_smile: At least I think the updated error messages are from purrr latest version?
(maybe a niche mistake) While refactoring a reference index configuration I accidentally left an empty "contents:", for which the error was not very clear. ```r > pkgdown::check_pkgdown() Error in `map2()`:...
Enhancement request. Not a bug per se. In the head.html template, MathJax v2.7 is being used and that is 5 years out of date. None of the MathJax v3 configuration...
I initialized a package with an empty README.md intending to fill it in later, and when I later tried to build a site with `pkgdown::build_site()`, I ran into an error:...
I am working with a new package with a DESCRIPTION file that does not have the repository or the URL. I've added the following to my _pkgdown.yml ```yaml navbar: right:...
Consider the follow minimal `README.md`: ``` [foo](foo.md) [bar]{bar.md#awesome) ``` `pkgdown::build_site()` will convert it to ``` foo bar ``` instead of ``` foo bar ``` This happen because in https://github.com/r-lib/pkgdown/blob/39083f38bbb2de2e1126529392bddf3e6e262ab4/R/tweak-tags.R#L46 we...
I have this code indicating that the back icon should be placed left of the search bar, but instead it's placed on the right. ``` navbar: structure: right: [goback, search,...
If a call to `usethis::use_*_license()` is made with the `include_future = TRUE` argument to apply a GPL, AGPL, LGPL or Apache licence to a package, this will set the `Licence`...
The uptick in packages utilizing gt to create beautiful tables has been significant over the last couple of years. https://gt.rstudio.com/ I would be amazing if pkgdown could somehow render/display these...
Sorry if this issue is not as focused. Here is a workflow I sometimes use when working on packages to preview its reference index without rendering everything. ```r # on...