I have a set of small, single(-ish)-function, R scripts that I use to build pipelines. The idea behind writing all these scripts is the possibility of reusing them in multiple pipelines. To do so, I would like to build a documentation to collect information about them into a single resource.
Roxygen is useful to document functions and create R packages with a complete documentation.
I am looking for the equivalent of Roxygen, but to document whole scripts. My ideal tool would be one where:
- I can write a summary of usage, parameters and outputs for each R script
- I can obtain an html page with a search bar to look up scripts based on keywords
- Can be linked to a github repo and get automatically updated upon sending a new commit
Is there something like this around?
Thank you.