roxygen2
roxygen2 copied to clipboard
Generate R package documentation from inline R comments
Hi, R 4.2.0 switched to HTML5 for documentation pages. It now validates HTML generated from Rd files using [HTML Tidy](http://www.html-tidy.org/). Recently, I receive a message from CRAN telling me to...
Some packages have historically used annotations on the URL field, such as `curl`: ``` URL: https://github.com/jeroen/curl (devel) https://curl.se/libcurl/ (upstream) BugReports: https://github.com/jeroen/curl/issues ``` (https://github.com/jeroen/curl/blob/e7502d27c7cff17baa0930c3327f84ae4918aa24/DESCRIPTION#L22-L23) This syntax is no longer acceptable on...
With the roxygen2 7.2.1 update, I'm now seeing this error in one of my packages, and I'm having trouble locating the source: ``` Error in rd_section_minidesc(name = object_name(block$object), desc =...
I am not sure why this was allowed in `@includeRmd` but not in inline markdown or child documents.
Fixes https://github.com/r-lib/roxygen2/issues/1415
- DOI is *not* extracted from `http://dx.doi.org/`-style URLs e.g. `http://dx.doi.org/10.1000/1` - DOI special characters are not unqoted, e.g. `https://doi.org/10.1000/456%23789` should be resolved to `doi:10.1000/456#789` Reference: https://www.doi.org/syntax.html
## Steps to reproduce * Example DESCRIPTION file ``` Package: foobar.test.roxygen2 Type: Package Title: What the Package Does (Title Case) Version: 0.1.0 Author: Who wrote it Maintainer: The package maintainer...
I think that when you mention the tag `@example` (in yellow background below) you meant `@examples`. (_As an alternative to the screenshot, I tried to find the permalink for this...
Since v7.1.0 out pkg build pipeline fails on step `roxygen2::roxygenise()` (`devtools::document()`). because it cannot compile our src files due to missing NAMESPACE file. Until v7.0.2 roxygen2::roxygenise() created the NAMESPACE file...