XF 1.5 BB code for ordered list types

Aivaras

Well-known member
I'm in need of additional types for ordered lists. As a result, I was hoping the following BB codes would work:
Rich (BB code):
[list=A]
[*]First item
[*]Second item
[*]Third item
[/list]
to output:
Rich (BB code):
A. First item
B. Second item
C. Third item
Rich (BB code):
[list=a]
[*]First item
[*]Second item
[*]Third item
[/list]
to output:
Rich (BB code):
a. First item
b. Second item
c. Third item
Rich (BB code):
[list=I]
[*]First item
[*]Second item
[*]Third item
[/list]
to output:
Rich (BB code):
  I. First item
 II. Second item
III. Third item
Rich (BB code):
[list=i]
[*]First item
[*]Second item
[*]Third item
[/list]
to output:
Rich (BB code):
  i. First item
 ii. Second item
iii. Third item
Yet they don't. Is this difficult to implement on XenForo?
 
This seems so simple. If [*] is always replaced with <li> then a simple html replacement should be enough. I guess it is a lot more complicated than that because of the parsing.

It did not make it in to 2.1 and we will not be installing 2.2 for another month or so and I do not think it is there either.
 
Last edited:
Top Bottom