I have an ordered list and I\'d like to skip the number output from a particular item.
Traditional output:
1. List item 2. List item 3. List item 4. List
It's quite simple now.
Just add the following to a class .skip with .skip being used for the skipped list-item:
ol li.skip { list-style-type:none; counter-increment:none; }
in HTML it would be:
first list item 2nd list item third list item
resulting in: