<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://majakhar.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://majakhar.github.io/" rel="alternate" type="text/html" /><updated>2026-05-29T16:13:43+00:00</updated><id>https://majakhar.github.io/feed.xml</id><title type="html">Mahendra Singh Jakhar</title><subtitle>Engineering blog on Platform Engineering, DevOps, and SRE.</subtitle><author><name>Mahendra Singh Jakhar</name></author><entry><title type="html">Edge Case: Nested and Mixed Lists</title><link href="https://majakhar.github.io/edge%20case/2026/05/27/welcome-to-jekyll.html" rel="alternate" type="text/html" title="Edge Case: Nested and Mixed Lists" /><published>2026-05-27T00:00:00+00:00</published><updated>2026-05-27T00:00:00+00:00</updated><id>https://majakhar.github.io/edge%20case/2026/05/27/welcome-to-jekyll</id><content type="html" xml:base="https://majakhar.github.io/edge%20case/2026/05/27/welcome-to-jekyll.html"><![CDATA[<p>Nested and mixed lists are an interesting beast. It’s a corner case to make sure that</p>

<ul>
  <li>Lists within lists do not break the ordered list numbering order</li>
  <li>Your list styles go deep enough.</li>
</ul>

<h3 id="ordered--unordered--ordered">Ordered – Unordered – Ordered</h3>

<ol>
  <li>ordered item</li>
  <li>ordered item
    <ul>
      <li><strong>unordered</strong></li>
      <li><strong>unordered</strong>
        <ol>
          <li>ordered item</li>
          <li>ordered item</li>
        </ol>
      </li>
    </ul>
  </li>
  <li>ordered item</li>
  <li>ordered item</li>
</ol>

<h3 id="ordered--unordered--unordered">Ordered – Unordered – Unordered</h3>

<ol>
  <li>ordered item</li>
  <li>ordered item
    <ul>
      <li><strong>unordered</strong></li>
      <li><strong>unordered</strong>
        <ul>
          <li>unordered item</li>
          <li>unordered item</li>
        </ul>
      </li>
    </ul>
  </li>
  <li>ordered item</li>
  <li>ordered item</li>
</ol>

<h3 id="unordered--ordered--unordered">Unordered – Ordered – Unordered</h3>

<ul>
  <li>unordered item</li>
  <li>unordered item
    <ol>
      <li>ordered</li>
      <li>ordered
        <ul>
          <li>unordered item</li>
          <li>unordered item</li>
        </ul>
      </li>
    </ol>
  </li>
  <li>unordered item</li>
  <li>unordered item</li>
</ul>

<h3 id="unordered--unordered--ordered">Unordered – Unordered – Ordered</h3>

<ul>
  <li>unordered item</li>
  <li>unordered item
    <ul>
      <li>unordered</li>
      <li>unordered
        <ol>
          <li><strong>ordered item</strong></li>
          <li><strong>ordered item</strong></li>
        </ol>
      </li>
    </ul>
  </li>
  <li>unordered item</li>
  <li>unordered item</li>
</ul>

<h3 id="task-lists">Task Lists</h3>

<ul class="task-list">
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />Finish my changes</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Push my commits to GitHub</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Open a pull request</li>
</ul>]]></content><author><name>Mahendra Singh Jakhar</name></author><category term="Edge Case" /><category term="content" /><category term="css" /><category term="edge case" /><category term="lists" /><category term="markup" /><summary type="html"><![CDATA[Nested and mixed lists are an interesting beast. It’s a corner case to make sure that]]></summary></entry></feed>