Hi,
As a follow-up of my previous question: is it possible to let css generate indexes for items?
I.e.
<examples>
<example>
<title>This is the first example</title>
</example>
<example>
<title>This is the second example</title>
</example>
</examples>
With something like:
example:nth-child(n):before {
content: n;
}
To show:
1. This is the first example
2. This is the second example
Kind regards,
Roderik Dernison