completeManualPage {wyz.code.rdoc} | R Documentation |
Complete Manual Page
Description
Complete a manual page
Usage
completeManualPage(filename_s_1, processingContext_o,
add_b_1 = TRUE, verbosity_b_1 = FALSE)
Arguments
filename_s_1 |
A single |
processingContext_o |
a single processing |
add_b_1 |
a |
verbosity_b_1 |
a single |
Value
This function adds or patches on-demand sections of a manual page file.
You may consider twice prior using this function. It is a convenience that aims
to sustain your productivity. You may get very quick results using it, but at the
probable cost of non reproducibility in comparison with manual pages produced using
function ManualPageBuilder
.
Author(s)
Fabien Gelineau <neonira@gmail.com>
Maintainer: Fabien Gelineau <neonira@gmail.com>
Examples
f <- function() {}
ic <- InputContext(NULL, 'f')
p <- produceManualPage(ic)
# WARNING: File /tmp/Rtmpvk4BG5/f.Rd
# checkRd: (5) /tmp/Rtmpvk4BG5/f.Rd:0-9: Must have a \description
completeManualPage(p$context$filename,
ProcessingContext(postProcessing_l = list(
details = function(content_s) 'some more details',
concept = function(content_s) 'yet another concept'
)), verbosity = TRUE
)
# adding details
# adding concept
# [1] TRUE
[Package wyz.code.rdoc version 1.1.19 Index]