Use lists to make blocks of text easier to read, and to break information into manageable chunks.
 {{ aspExample({ code: "<ul class=\"asp-list–plain\">  
  <li>  
    <a href=\"#\">Link text example 1</a>  
  </li>  
  <li>  
    <a href=\"#\">Link text example 2</a>  
  </li>  
  <li>  
    <a href=\"#\">Link text example 3</a>  
  </li>  
  <li>  
    <a href=\"#\">More</a>  
  </li>  
</ul>", nunjucks: "", json: "", title: "", example: "", id: "65a927f13d05c" }) }}
Bulleted lists
Introduce bulleted lists with a lead-in line ending in a colon. Start each item with a lowercase letter, and do not use a full stop at the end.
 {{ aspExample({ code: "<p>Bulleted list example:</p>  
<ul>  
  <li>  
    <a href=\"#\">Link text example 1</a>  
  </li>  
  <li>  
    <a href=\"#\">Link text example 2</a>  
  </li>  
  <li>  
    <a href=\"#\">Link text example 3</a>  
  </li>  
  <li>  
    <a href=\"#\">More</a>  
  </li>  
</ul>", nunjucks: "", json: "", title: "", example: "", id: "65a927f13d0c6" }) }}
Numbered lists
Use numbered lists instead of bulleted lists when the order of the items is relevant.
Items in a numbered list should end in a full stop because each should be a complete sentence.
 {{ aspExample({ code: "<ol>  
  <li>  
    <a href=\"#\">Link text example 1</a>  
  </li>  
  <li>  
    <a href=\"#\">Link text example 2</a>  
  </li>  
  <li>  
    <a href=\"#\">Link text example 3</a>  
  </li>  
  <li>  
    <a href=\"#\">More</a>  
  </li>  
</ol>", nunjucks: "", json: "", title: "", example: "", id: "65a927f13d10d" }) }}