How to make Custom Lists?

Deck Help forum

Posted on March 18, 2018, 3:18 a.m. by Clyde_Bankston

So...I am a bit of an idiot, and can't seem to find how to do it in a sane way that doesn't make my head explode. Sorry, but thanks in advance _

multimedia says... #2

Hey, there's two buttons in the comment area where you type in the comment at the top is an Unordered List button and on the right side of it is an Ordered List button.

You can also use HTML to make ordered or unordered lists:

Ordered List One Drops

  1. Birds of Paradise
  2. Llanowar Elves
  3. Elvish Mystic

or

Unordered List One Drops


Ordered lists start with a <ol> tag. Each list item is displayed in order with a number next to it called a bullet.

<ol>
<li>[[Birds of Paradise]]</li>
<li>[[Llanowar Elves]]</li>
<li>[[Elvish Mystic]]</li>
</ol>

To add an item to the list use the <li> tag.
Unordered lists start with a <ul> tag. These lists don't display numbers next to each list item instead the bullet is a dot.

<ul>
<li>[[Birds of Paradise]]</li>
<li>[[Llanowar Elves]]</li>
<li>[[Elvish Mystic]]</li>
</ul>


March 19, 2018 3:56 a.m.

Clyde_Bankston says... #3

Thanks so much

March 19, 2018 1:33 p.m.

Please login to comment