How to continue numbered list across sections in Mediawiki

3.1k Views Asked by At

I want to break up the numbered lists with section headers and the numbering to restart. Old Mediawiki formatting was like that, but with 1.24 it is no longer. For example

==First Header2==
#
#
==Second Header2==
#

Desired output:

First Header2

1.

2.

Second Header2

1.

Is there any css or extension I can use?

1

There are 1 best solutions below

1
On

You can use <li value="X">

Like this:

==Header==
# first item
# second item
==Another header==
# <li value="3"> third item </li> 
# fourth item