This is another item which requires HTML coding, but is not difficult.
You create what is called an "unordered list" using the UL command. Each item is surrounded by the "line item" markers (li). Here's the code for the list above:
That's all a bit hard to read. The commands inside the <> are ul, li, /li and /ul.
The default symbol is a disc. You can also get an open circle by adding a "type" between the "ul" and the ">" on the first line.
ul type="circle">
You can get a square with
ul type="square">
You can return to the default choice by specifying
ul type="disc">
as your choice.
Of course, all of your "ul type" commands will need to begin with the < which I omitted each time.