Convert the Md file for a specific chapter to html
convertMdToHtml(
mdFile,
configFile = NULL,
indexPath = "index.Rmd",
intermediateDir = "./interim",
outputDir = "./report",
setTitle = TRUE,
verbose = TRUE,
...
)
No returned value, the files in the intermediateDir
are converted to HTML
String with path of the Markdown file
String with filename of the config file of interest in YAML format.
String with path to the index file,
by default 'index.Rmd' in inputDir
.
String with intermediate directory ('interim'
by default), where
markdown files and rds file specifying Js libraries (with knit_meta
) for
each sub report are stored.
String with output directory, ('report' by default).
Logical (TRUE by default), should the title be set
to the document? If so, the pandoc metadata option: 'pagetitle' is set to:
base file name of mdFile
.
Logical, if TRUE (FALSE by default) progress messages are printed during the report execution.
Arguments passed to renderFile
Laure Cougnaud