html_page | R Documentation |
This function is a simple wrapper of bookdown::html_document2()
with different default arguments, and more importantly, a special HTML
template designed only for blogdown to render R Markdown to HTML pages
that can be processed by Hugo.
html_page(
...,
number_sections = FALSE,
self_contained = FALSE,
highlight = NULL,
template = NULL,
pandoc_args = c("-M", "link-citations=true", "--preserve-tabs"),
keep_md = FALSE,
pre_knit = NULL,
post_processor = NULL
)
... , number_sections , self_contained , highlight , template , pandoc_args |
Arguments passed to |
keep_md , pre_knit , post_processor |
Passed to
|
The HTML output is not a complete HTML document, and only meaningful to blogdown (it will be post-processed to render valid HTML pages). The only purpose of this output format is for users to change options in YAML.
The fact that it is based on bookdown means most bookdown features are supported, such as numbering and cross-referencing figures/tables.
Do not use a custom template unless you understand how the default template actually works (see the blogdown book).
The argument highlight
does not support the value "textmate"
,
and the argument template
does not support the value
"default"
.
See Chapter 2 of the bookdown book for the Markdown syntax: https://bookdown.org/yihui/bookdown. See the blogdown book for full details: https://bookdown.org/yihui/blogdown.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.