TYPO3 10.4.20
I have styled an ordered list and I want to use a start-number.
In my YAML I have added:
editor:
config:
extraAllowedContent:
- ol[*]
# Allow s and u tag
processing:
allowAttributes: [ data-count, start ]
HTMLparser_db:
tags:
ol:
allowedAttribs: "start"
In the editor everything is fine:
<ol start="5">
<li><strong>Text</strong><br />
More Text</li>
<li><strong>Text</strong><br />
More Text</li>
</ol>
The attribute start="5"
is saved.
But in the frontend the start="5"
is gone.
What do I need?