Reverse numbered list

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>
1 Like