Add support for ordered and unordered lists in solution threads

Announcements, comments, ideas, feedback, and "How do I... ?" questions
Post Reply
macdjord
Posts: 1
Joined: Sat Jun 28, 2025 6:42 am

Add support for ordered and unordered lists in solution threads

Post 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.
User avatar
euler
Administrator
Posts: 5094
Joined: Sun Mar 05, 2006 4:49 pm
Location: Cheshire, England
Contact:

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

Post by euler »

A good suggestion. I'll add it to my to-do list.
Image
impudens simia et macrologus profundus fabulae
User avatar
euler
Administrator
Posts: 5094
Joined: Sun Mar 05, 2006 4:49 pm
Location: Cheshire, England
Contact:

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

Post 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
Image
impudens simia et macrologus profundus fabulae
Post Reply