Is it possible to define a style for an ordered list that renders something like
Item 1 Item 2 <
You can use css counter and :before pseudo-element to create this type of list.
css counter
:before
ol { counter-reset: custom; list-style-type: none; } ol li:before { content: '('counter(custom)') '; counter-increment: custom; }
Item 1 Item 2 Item 3