Format for converting from R Markdown to a tutorial HTML document.

tutorial_html(solution = FALSE, suffix = "_question",
  includes = NULL, css = NULL, extra_dependencies = NULL, ...)

tutorial_html_solution(suffix = "_solution", ...)

Arguments

solution

Turn ON or OFF the rendering of solution chunks (default is FALSE)

suffix

Suffix which is added to the filename (default is '_question' for 'unilur::tutorial_html' and '_solution' for 'unilur::tutorial_html_solution')

includes

Named list of additional content to include within the document (typically created using the includes function).

css

One or more css files to include

extra_dependencies

Additional function arguments to pass to the base R Markdown HTML output formatter html_document_base

...

Additional function arguments to pass to the base R Markdown HTML output formatter html_document_base

Value

R Markdown output format to pass to render

Details

See the inherited `rmarkdown::html_document` help page for additional arguments.