If I'm creating a .rmd report and this is my example YAML, how do I attach another stylesheet to this report's output?
---
title: "Example Report"
author: "Cool guy 62"
date: "`r format(Sys.time(), '%d %B, %Y')`"
output:
html_document:
theme: null
css: 'style.css'
---
Place the multiple css files into a bracketed array like so:
---
title: "Example Report"
author: "Cool guy 62"
date: "`r format(Sys.time(), '%d %B, %Y')`"
output:
html_document:
theme: null
css: ['browserreset.css', 'style.css', 'C:/Users/coolguy62/webpages/styles/bootstrap-modified.css']
---
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With