Hi,
If we run your YAML:
---
title: "Introduction"
description: |
This document is a product of my internship at the World Agroforestry Centre, Nairobi, 2021.
author:
- first_name: "Magnus Kamau Katana"
last_name: "Lindhardt"
url: https://www.linkedin.com/in/magnus-kamau-lindhardt
affiliation: Intern at The World Agroforestry Centre, Nairobi & Msc student at the Wageningen University, The Netherlands
affiliation_url: https://www.linkedin.com/in/magnus-kamau-lindhardt
date: "`r Sys.Date()`"
output:
distill::distill_article:
toc: true
toc_float: true
toc_depth: 3
number_sections: true
code_folding: true
---
```{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>.
We get perfect distill
output:
But if we
simply delete the Title, Author, Date etc in the YAML
---
output:
distill::distill_article:
toc: true
toc_float: true
toc_depth: 3
number_sections: true
code_folding: true
---
```{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>.
We (I) get the following output:
with the following warning/message in Render
panel:

So, the title:
element is required by default in distill
document.
Here is a screenshot where I delete the highlighted section. And this worked fine.
Yes, but you will still have the title:
element/section visible.
Is it more clear now?