Description Usage Arguments Value Author(s) Examples
View source: R/completeManualPage.R
Complete a manual page
1 2 | completeManualPage(filename_s_1, processingContext_o,
add_b_1 = TRUE, verbosity_b_1 = FALSE)
|
filename_s_1 |
A single |
processingContext_o |
a single processing |
add_b_1 |
a |
verbosity_b_1 |
a single |
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
.
Fabien Gelineau <neonira@gmail.com>
Maintainer: Fabien Gelineau <neonira@gmail.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 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
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.