How to create lettered lists using Quarto?

Viewed 244

In R-Markdown you can automatically create lettered lists using the following code:

---
title: "Untitled"
author: "Author"
date: "2022-07-21"
output: html_document
---

# Example

a) something
a) something

Output:

enter image description here

I tried using the same commands in Quarto:

---
title: "Untitled"
format: html 
editor: visual
---

a) something

a) something

Output:

enter image description here

So I was wondering if it is possible to automatically create lettered lists in Quarto?

1 Answers
---
title: "Untitled"
format: html 
---

this is a numbered list

1) something 1 
1) something 2

this is lettered list

a) something
a) something
a) something
a) something

list in quarto

Related