I'm trying to increase the distance between bullet points in R Markdown unsuccessfully. I've tried enumitem and a few other changes with no success.
Here is a workable code:
---
title: "Title"
date: "`r Sys.Date()`"
author: "Author"
output: beamer_presentation
---
## Slide 1
- Bullet point 1
- Bullet point 2
And you should get this:
The idea is to increase the space between Bullet point 1 and Bullet point 2.
Any ideas? Thanks!

