Reverse numbered list

How do I make a list that will be rendered in reversed order?

This list in Editor mode:

3. c
2. b
1. a

transforms to this in Preview:

3. c
4. b
5. a

How do I make a numbered list that will be reversed in Preview?

You can do it manually:

3\. c
2\. b
1\. a

Or using HTML:

<ol reversed>
	<li>c</li>
	<li>b</li>
	<li>a</li>
</ol>

That won’t create correct output though. The output would be:

<p>3. c 2. b 1. a</p>

This is not a ‘true’ list, of course, it’s a workaround.
In my case the output is:

<p>3. c<br>2. b<br>1. a</p>

Would this plugin help?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.