View source: R/html_document_base.R
html_document_base | R Documentation |
Creates an HTML base output format suitable for passing as the
base_format
argument of the output_format
function.
html_document_base(
theme = NULL,
self_contained = TRUE,
lib_dir = NULL,
math_method = "default",
mathjax = "default",
pandoc_args = NULL,
template = "default",
dependency_resolver = NULL,
copy_resources = FALSE,
extra_dependencies = NULL,
css = NULL,
bootstrap_compatible = FALSE,
...
)
theme |
One of the following:
|
self_contained |
Produce a standalone HTML file with no external dependencies, using data: URIs to incorporate the contents of linked scripts, stylesheets, images, and videos. Note that even for self contained documents MathJax is still loaded externally (this is necessary because of its size). |
lib_dir |
Directory to copy dependent HTML libraries (e.g. jquery,
bootstrap, etc.) into. By default this will be the name of the document with
|
math_method |
Math rendering engine to use. This will define the math method to use with Pandoc.
For example, output: html_document: math_method: engine: katex url: https://cdn.jsdelivr.net/npm/katex@0.11.1/dist See Pandoc's Manual about Math in HTML for the details about Pandoc supported methods. Using |
mathjax |
Include mathjax. The "default" option uses an https URL from a
MathJax CDN. The "local" option uses a local version of MathJax (which is
copied into the output directory). You can pass an alternate URL or pass
|
pandoc_args |
Additional command line options to pass to pandoc |
template |
Pandoc template to use for rendering. Pass "default" to use
the rmarkdown package default template; pass |
dependency_resolver |
A dependency resolver |
copy_resources |
Copy resources |
extra_dependencies |
Extra dependencies as a list of the
|
css |
CSS and/or Sass files to include. Files with an extension of .sass
or .scss are compiled to CSS via |
bootstrap_compatible |
Bootstrap compatible |
... |
Ignored |
HTML base output format.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.