Turn Repeater into List | <div> to <ul>

I would like to output the content of a repeater as an ul-Tag.

Currently the structure is like this:

<div class="repeater-container">
   <div class="repeater-item"></div>
   <div class="repeater-item"></div>
   ...
</div>

I would like to turn this into:

<ul class="repeater-container">
   <li class="repeater-item"></li>
   <li class="repeater-item"></li>
   ...
</ul>

The tag selector is currently disabled:

Bildschirmfoto 2023-10-27 um 19.10.35

Goes nicely with:

1 Like