knit()
and
PandocKnits the input file and compiles to an output format using Pandoc.
knit2pandoc(
input,
output = NULL,
tangle = FALSE,
text = NULL,
quiet = FALSE,
envir = parent.frame(),
to = "html",
pandoc_wrapper = NULL,
...,
encoding = "UTF-8"
)
Path to the input file.
Path to the output file for knit()
. If NULL
, this
function will try to guess a default, which will be under the current
working directory.
Boolean; whether to tangle the R code from the input file (like
utils::Stangle
).
A character vector. This is an alternative way to provide the input file.
Boolean; suppress the progress bar and messages?
Environment in which code chunks are to be evaluated, for
example, parent.frame()
, new.env()
, or
globalenv()
).
Character string giving the Pandoc output format to use.
An R function used to call Pandoc. If NULL
(the
default), rmarkdown::pandoc_convert()
will be used
if rmarkdown is installed, otherwise pandoc()
.
Options to be passed to the pandoc_wrapper
function.
Ignored (always assumes UTF-8).
Returns the output of the pandoc_wrapper
function.