Describe the bug
dprint-plugin-markdown version: 0.22.0
It removes blockquote > sign if it reside in the first line of a list item.
Input Code
Expected Output
Actual Output
Additional information
Result from pulldown-cmark@0.11.2 looks OK:
<ul>
<li>
<blockquote>
<p>a</p>
</blockquote>
</li>
<li>
<blockquote>
<p>b
c</p>
</blockquote>
</li>
<li>x
<blockquote>
<p>y</p>
</blockquote>
</li>
</ul>
Describe the bug
dprint-plugin-markdown version: 0.22.0
It removes blockquote
>sign if it reside in the first line of a list item.Input Code
Expected Output
Actual Output
Additional information
Result from pulldown-cmark@0.11.2 looks OK: