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
)
Arguments passed to bookdown::html_document2()
(note the option
theme
is not supported and set to NULL
internally, and when
template = NULL
, a default template in blogdown will be used).
Passed to
rmarkdown::output_format
.
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.
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.