Skip to content

Instantly share code, notes, and snippets.

@olivroy
Last active February 15, 2022 15:26
Show Gist options
  • Save olivroy/778241049a94ff3863157ea08243d28e to your computer and use it in GitHub Desktop.
Save olivroy/778241049a94ff3863157ea08243d28e to your computer and use it in GitHub Desktop.
Some specifications for Rmd doc.
---
output:
bookdown::html_document2:
theme: bootstrap
version: 5
highlight: kate
---
```{r setup, include=FALSE}
library(knitr)
library(scales)
library(tidyverse)
knitr::opts_chunk$set(
message = FALSE,
warning = FALSE,
comment = "#>",
class.source = "code-chunk",
class.output = "code-output"
)
```
```{css, echo=FALSE}
.code-chunk {
font-weight: bold;
}
.code-output {
border: 0px;
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment