From b454efa96b0d067d180fa7a08992aaf69806ce0b Mon Sep 17 00:00:00 2001 From: Keo Corak Date: Tue, 16 May 2023 17:45:16 -0400 Subject: [PATCH] Add spaces between list and title Changed list description to clarify that to render correctly, there needs to be an empty line between some text and a list. --- episodes/15-knitr-markdown.Rmd | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/episodes/15-knitr-markdown.Rmd b/episodes/15-knitr-markdown.Rmd index 8cfda4101..ce980c448 100644 --- a/episodes/15-knitr-markdown.Rmd +++ b/episodes/15-knitr-markdown.Rmd @@ -120,9 +120,11 @@ and you make things *italics* by using underscores, like this: `_italics_`. You can make a bulleted list by writing a list with hyphens or -asterisks, like this: +asterisks with a space between the list and other text, like this: ``` +A list: + * bold with double-asterisks * italics with underscores * code-type font with backticks @@ -131,6 +133,8 @@ asterisks, like this: or like this: ``` +A second list: + - bold with double-asterisks - italics with underscores - code-type font with backticks