ikesultan
ikesultan

Reputation: 195

How to continue numbered list across sections in Mediawiki

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?

Upvotes: 7

Views: 3739

Answers (1)

DanielMK
DanielMK

Reputation: 601

You can use <li value="X">

Like this:

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

Upvotes: 16

Related Questions