Thanks,
In SKT Corp there are shortcodes for lists:
[unordered_list style="list-1"]<li>List style 1</li>[/unordered_list]
they use several nice icons (list-1 .. list-10) instead of simple “bullets”. If I want to use it I can’t do code like:
[unordered_list style="list-1"]
<li>Hi</li>
<li>Hi</li>
[unordered_list style="list-2"]
<li>Hi</li>
[/unordered_list]
[/unordered_list]
because in that case the list is “flat” (no padding for sub-items). That’s why I have to use lists just as in your example. Using <ul style="list-1">
might be a good option.