dprint / dprint-plugin-markdown

Markdown code formatting plugin for dprint.
MIT License
25 stars 9 forks source link

Nested quotations are ignored #110

Closed rikhuijzer closed 1 month ago

rikhuijzer commented 1 month ago

Describe the bug

dprint-plugin-markdown version: 0.17.1

Input Code

> A quote at the top level.

>> With a nested quote inside it.

For which Zola generates the following html:

<blockquote>
  <p>A quote at the top level.</p>
</blockquote>
<blockquote>
  <blockquote>
    <p>With a nested quote inside it.</p>
  </blockquote>
</blockquote>

which looks as follows in the browser:

image

Expected Output

> A quote at the top level.

>> With a nested quote inside it.

Actual Output

> A quote at the top level.

> With a nested quote inside it.