<ul>
    <li>First item</li>
    <li>Second item</li>
    <li>Third item</li>
    <li>Fourth item which, under some circumstances, wraps to the subsequent line because of its excessive length</li>
    <li>Fifth item</li>
</ul>
<ul>
    {%- for item in items -%}
    <li>{{ item }}</li>
    {%- endfor -%}
</ul>
{
  "type": "ul",
  "items": [
    "First item",
    "Second item",
    "Third item",
    "Fourth item which, under some circumstances, wraps to the subsequent line because of its excessive length",
    "Fifth item"
  ]
}

List

Unordered and ordered lists are styled using pseudo-content list markers (as seen in Tailwind CSS Typography).