Rdpack (version 0.4-20)

Rdo_set_section: Replace a section in an Rd file

Description

Replace a section in an Rd file.

Usage

Rdo_set_section(text, sec, file, ...)

Arguments

text
the new text of the section, a character vector.
sec
name of the section.
file
name of the file.
...
arguments to be passed on to Rdo_modify.

Value

This function is used mainly for the side effect of changing file. It returns the Rd formatted text as a character vector.

Details

Parses the file, replaces the specified section with the new content and writes the file back. The text is processed as appropriate for the particular section (sec).

For example:

Rdo_set_section("Georgi N. Boshnakov", "author", "./man/Rdo2Rdf.Rd")

(Some care is needed with the author field for "xxx-package.Rd" files, such as "Rdpack-package.Rd", where the Author(s) field has somewhat different layout.)

By default Rdo_set_section does not create the section if it does not exist since this may not be desirable for some Rd files. The "..." arguments can be used to change this, they are passed on to Rdo_modify, see its documentation for details.

Examples

Run this code
dummyfun <- function(x) x

fn <- tempfile("dummyfun", fileext="Rd")
reprompt(dummyfun, filename=fn)
Rdo_show(parse_Rd(fn))

Rdo_set_section("Georgi N. Boshnakov", "author", fn)
Rdo_show(parse_Rd(fn))

unlink(fn)

Run the code above in your browser using DataCamp Workspace