md_document {rmarkdown} | R Documentation |
Format for converting from R Markdown to another variant of markdown (e.g. strict markdown or github flavored markdown)
md_document(variant = "markdown_strict", preserve_yaml = FALSE, toc = FALSE, toc_depth = 3, fig_width = 7, fig_height = 5, fig_retina = NULL, dev = "png", includes = NULL, md_extensions = NULL, pandoc_args = NULL)
variant |
Markdown variant to produce (defaults to "markdown_strict"). Other valid values are "markdown_github", "markdown_mmd", markdown_phpextra", or even "markdown" (which produces pandoc markdown). You can also compose custom markdown variants, see the pandoc online documentation for details. |
preserve_yaml |
Preserve YAML front matter in final document. |
toc |
|
toc_depth |
Depth of headers to include in table of contents |
fig_width |
Default width (in inches) for figures |
fig_height |
Default width (in inches) for figures |
fig_retina |
Scaling to perform for retina displays. Defaults to
|
dev |
Graphics device to use for figure output (defaults to png) |
includes |
Named list of additional content to include within the
document (typically created using the |
md_extensions |
Markdown extensions to be added or removed from the
default definition or R Markdown. See the |
pandoc_args |
Additional command line options to pass to pandoc |
See the online
documentation for additional details on using the md_document
format.
R Markdown documents can have optional metadata that is used to generate a document header that includes the title, author, and date. For more details see the documentation on R Markdown metadata.
R Markdown documents also support citations. You can find more information on the markdown syntax for citations in the Bibliographies and Citations article in the online documentation.
R Markdown output format to pass to render
## Not run: library(rmarkdown) render("input.Rmd", md_document()) render("input.Rmd", md_document(variant = "markdown_github")) ## End(Not run)