I want to render the docs into a separate folder, somewhere else. The documentation seems to indicate I can point it to a different intput source, through path, but not to a different output location:
render_docs(path = ".", verbose = FALSE, parallel = FALSE, freeze = FALSE)
Arguments:
path: Path to the package root directory.
I want something like:
render_docs(output_path="../../docs/thisRPackage")
because I have a single mkdocs site, which I want to hold the rendered documentation from multiple packages, which I would put as subfolders in a /docs parent folder.
I want to render the docs into a separate folder, somewhere else. The documentation seems to indicate I can point it to a different intput source, through
path, but not to a different output location:I want something like:
because I have a single mkdocs site, which I want to hold the rendered documentation from multiple packages, which I would put as subfolders in a
/docsparent folder.