olivroy

Results 243 issues of olivroy

Since it is deprecated and features are now in rlang. https://rlang.r-lib.org/news/index.html#argument-intake-1-0-0

I found one notable usage in the wild: the data.table package https://github.com/Rdatatable/data.table/blob/master/_pkgdown.yml However, the tooltip doesn't appear on their website. https://rdatatable.gitlab.io/data.table/ I couldn't find a way to make it work....

fix #2692. I see that some PR was made a while back (https://github.com/r-lib/pkgdown/pull/1786), so I am only supporting this if dev mode is auto It works (with my test example)...

To make output more colorful ![image](https://github.com/r-lib/roxygen2/assets/52606734/05ea1e2c-437d-4cd9-8116-82dd288180c2) Snapshot failures caused by xfun (will be resolved with 0.44) (already solved in dev https://github.com/yihui/xfun/commit/1182e517306255873f3915ff98c75f0dcc2a1726

Fix #1626. I have seen in the wild cases of persons who used commas for example. https://github.com/r-spatial/sf/pull/2285 See the defunct file https://github.com/r-spatial/sf/pull/2285/files#diff-089405beae4488e32546bbf6c68166873b65f29323ca65f621de30eb80154e53 as an example.

Addresses #1619. Probably need to find a better way to respect language set in DESCRIPTION, any way to access this? Similar to the approach in #1621 In Rstudio build pane...

Info is here: https://roxygen2.r-lib.org/articles/index-crossref.html?q=aliases#aliases Just add it here too ![image](https://github.com/r-lib/roxygen2/assets/52606734/facca984-7a95-4d08-b59b-c7b71fd78ce6)

Related to #1617, but different. For functions with many arguments, roxygen2 places all the arguments on different lines. However, since R 4.2, there is html support in help files, which...

My system language is French, but when I redocument packages, I'd like the language set in DESCRIPTION to be respected. Given the following reprex ```r library(roxygen2) roc_proc_text(rd_roclet(), " #' Title...

For example currently if your file contains this ```r #' title #' #' description #' #' # Section #' #' Content #' ``` `parse_file()` will not pick up the section...