Markdown allows ordered lists using numbers. How can I instead get an ordered list using letters? i.e.
A. the letter A
B. the letter B
C. etc
instead of
1. the number 1
2. the number 2
3. etc.
It doesn't appear that standard Markdown has this capability. You can:
<style type="text/css">
ol { list-style-type: upper-alpha; }
</style>
fancy_lists extension that will allow you to mark lists with letters and roman numerals.Note: if using capital letters, two spaces are required before the text. See https://pandoc.org/MANUAL.html#fn1
A. the letter A
A. the letter B
A. etc