Rd2txt_options {tools} | R Documentation |
This function sets various options for displaying text help.
Rd2txt_options(...)
... |
A list containing named options, or options passed as individual named arguments. See below for currently defined ones. |
This function persistently sets various formatting options for the
Rd2txt
function which is used in displaying text format
help. Currently defined options are:
"* "
, with the asterisk replaced by a
Unicode bullet in UTF-8 and most Windows locales):
The symbol to use as a bullet in itemized lists.FALSE
): Whether to show URLs when
expanding \hreftags.
TRUE
): Whether to render
\codeand similar with single quotes.
TRUE
): Whether to render
section titles with underlines (via backspacing).If called with no arguments, returns all option settings in a list. Otherwise, it changes the named settings and invisibly returns their previous values.
Duncan Murdoch
saveOpts <- Rd2txt_options() saveOpts Rd2txt_options(minIndent=4) Rd2txt_options() Rd2txt_options(saveOpts) Rd2txt_options()