Page 1 of 1

Add support for ordered and unordered lists in solution threads

Posted: Sat Jun 28, 2025 6:52 am
by macdjord
Currently, solution threads do not, AFAICT, support ordered or unordered lists. There is no mention of them in the formatting help, and experiments show the standard BBCode [list] tag does not work.

I can see no reason why this standard element of formatting, which both HTML and BBCode natively support, should not be available when writing solution posts.

Re: Add support for ordered and unordered lists in solution threads

Posted: Thu Jul 03, 2025 10:31 pm
by euler
A good suggestion. I'll add it to my to-do list.

Re: Add support for ordered and unordered lists in solution threads

Posted: Sat Jul 19, 2025 10:47 am
by euler
I've just added list support on the main site. There is brief documentation on the Forum Tags page, but essentially it works like this forum. The two exceptions being you need to explicitly use an open list item tag and a closed list item tag (rather than asterisks) and it does not support nested lists.

For example, an unordered list:

Code: Select all

[list]
[li]Item 1[/li]
[li]Item 2[/li]
[/list]
will produce,
  • Item 1
  • Item 2
You can also use

Code: Select all

[list=1]
to create an ordered (numeric) lists:
  1. Item 1
  2. Item 2
and

Code: Select all

[list=a]
to create alphabetical lists:
  1. Item 1
  2. Item 2