Is there a way to remove the indent and styling of an ordered list so that it appears like regular text?
For example:
1. Item
1. Item
[...]
1000. Item
The desired appearance is as follows:
1. Item
2. Item
[...]
1000. Item 100
Here is the code snippet:
<ol>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ol>
Any suggestions would be greatly appreciated!