Custom format rendering that converts from R Markdown to a Polish style HTML document. This is an extension of the rmarkdown html_document function.

polish_html(toc = TRUE, toc_float = TRUE, code_folding = "hide",
  contact = NULL, source = NULL, type = "default", home = NULL,
  ...)

Arguments

toc

TRUE to include a table of contents in the output

toc_float

TRUE to float the table of contents to the left of the main document content.

code_folding

Enable document readers to toggle the display of R code chunks. Specify "none" to display all code chunks (assuming they were knit with echo = TRUE). Specify "hide" to hide all R code chunks by default (users can show hidden code chunks either individually or document-wide). Specify "show" to show all R code chunks by default.

contact

email address (as a string) to show as a point of contact

source

URL link (as a string) to your source code (e.g in GitHub)

type

css styling type: either "default" or "inverse" (for inverse coloring)

home

URL link (as string) to provide a link to a "home" site

...

optional named inputs passed into html_document.

Value

R Markdown output format from rmarkdown html_document.