Format for converting from R Markdown to GitHub Flavored Markdown.
github_document(
toc = FALSE,
toc_depth = 3,
number_sections = FALSE,
math_method = "webtex",
preserve_yaml = FALSE,
fig_width = 7,
fig_height = 5,
dev = "png",
df_print = "default",
includes = NULL,
md_extensions = NULL,
hard_line_breaks = TRUE,
pandoc_args = NULL,
html_preview = TRUE,
keep_html = FALSE
)
R Markdown output format to pass to render()
TRUE
to include a table of contents in the output
Depth of headers to include in table of contents
TRUE
to number section headings
"webtex"
(the default) is used to render equations. This
will insert math an image in the resulting Markdown. See html_document()
for option to change webtex URL. Set to NULL
to opt-out.
Preserve YAML front matter in final document.
Default width (in inches) for figures
Default height (in inches) for figures
Graphics device to use for figure output (defaults to png)
Method to be used for printing data frames. Valid values
include "default", "kable", "tibble", and "paged". The "default" method
uses a corresponding S3 method of print
, typically
print.data.frame
. The "kable" method uses the
knitr::kable
function. The "tibble" method uses
the tibble package to print a summary of the data frame. The "paged"
method creates a paginated HTML table (note that this method is only valid
for formats that produce HTML). In addition to the named methods you can
also pass an arbitrary function to be used for printing data frames. You
can disable the df_print
behavior entirely by setting the option
rmarkdown.df_print
to FALSE
. See
Data
frame printing section in bookdown book for examples.
Named list of additional content to include within the
document (typically created using the includes
function).
Markdown extensions to be added or removed from the
default definition of R Markdown. See the rmarkdown_format
for
additional details.
TRUE
to generate markdown that uses a simple
newline to represent a line break (as opposed to two-spaces and a newline).
Additional command line options to pass to pandoc
TRUE
to also generate an HTML file for the purpose of
locally previewing what the document will look like on GitHub.
TRUE
to keep the preview HTML file in the working
directory. Default is FALSE
.
For Github Markdown output, PNG images with a white background are used so that it shows correctly on Github on both light and dark theme. You can choose to only output SVG for better quality by changing the URL used:
output:
github_document:
math_method:
engine: webtex
url: https://latex.codecogs.com/svg.image?
Background or fonts color cannot be changed for now and your equation may not be visible on dark theme.
See the online documentation for additional details on using the github_document()
format.