datacamp / rdocumentation-2.0

📚 RDocumentation provides an easy way to search the documentation for every version of every R package on CRAN and Bioconductor.
https://rdocumentation.org
MIT License
285 stars 44 forks source link

fix: broken crosslinks (#81, #74) #102

Closed sin closed 2 years ago

sin commented 2 years ago

Some of the links are formatted as function_name() or library::function_name() instead of just function_name. This is the convention in the tidyverse's docs.

This change simply removes the brackets and splits the library and function names.

Link to tidyselect::vars_pull() from tidyr:

Before: /link/tidyselect::vars_pull()?package=tidyr After: /link/vars_pull?package=tidyselect

More info in #81.