prereg_knit_item_content {preregr} | R Documentation |
Knit the specified content for the items in a (pre)registration into an Rmd file
Description
This function inserts the specified content for the items in a (pre)registration, or in one or more sections, into an R Markdown file.
Usage
prereg_knit_item_content(x, section = NULL, headingLevel = 2)
Arguments
x |
The (pre)registration object (as produced by a call to
|
section |
The section(s) to show; pass |
headingLevel |
The level to use for the top-most heading. |
Value
x, invisibly
Examples
### Load an example (pre)registration specification
data("examplePrereg_1", package = "preregr");
### Knit the contents of the "metadata" section
### as an R Markdown partial
examplePrereg_1 |>
preregr::prereg_knit_item_content(
section="metadata"
);
[Package preregr version 0.2.9 Index]