This is used within the YAML of a new Rmd document to use the Pudding Styled Theme

puddingTheme(toc = TRUE, code_folding = "show",
  number_sections = FALSE)

Arguments

toc

Whether to include a sticky table of contents automatically, Default: TRUE

code_folding

Should code be showing or hidden by default (options: "show", "hide"), Default: 'show'

number_sections

Should each chapter be numbered by default?, Default: FALSE

Value

OUTPUT_DESCRIPTION

Details

DETAILS

See also

Examples

# NOT RUN {
# in the YAML of your .Rmd file:
title: "Pudding Styled Report"
author: "Your Name"
date: "today"
output:
  puddingR::puddingTheme:
    toc: true
    code_folding: "show"
    number_sections: "false"
# }