Repro
Save this content as foo.md
Then run the following command in this repository
Expected behavior
The list is parsed as the content inside the alert body:
<blockquote class="markdown-alert-note">
<ul>
<li>Foo</li>
</ul>
</blockquote>
Actual behavior
The list is parsed as the content outside the alert body:
<blockquote class="markdown-alert-note">
</blockquote>
<ul>
<li>Foo</li>
</ul>
Environment
Additional info
GitHub renders - Foo as a content inside the alert block as follows:
I'll make a pull request to fix this issue.