I've been really digging the updates to the distill package for generating websites. I'm wondering if there is a YAML setting or a way to modify the CSS/HTML that would remove the entire header section (Title, Author, Date, etc.). I'm thinking this would be useful for a homepage of website, for example, where you don't necessarily want it.
Knitting with no title set in the YAML returns the following, with the R Markdown file name used as the title.
---
output: distill::distill_article
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
Distill is a publication format for scientific and technical writing, native to the web.
Learn more about using Distill for R Markdown at <https://rstudio.github.io/distill>.