dprint-plugin-markdown icon indicating copy to clipboard operation
dprint-plugin-markdown copied to clipboard

Formatter not preserving blank lines in indented blockquotes

Open lucacasonato opened this issue 2 years ago • 0 comments

https://dprint.dev/playground/#code/IwOgBAhgUFZwfGARrBqyIMZA/language/markdown

Describe the bug

The formatter fails to preserve blank lines in blockquotes only if they are indented, resulting in the removal of blank lines between paragraphs within a blockquote.

dprint-plugin-markdown version: 0.15.2

Input Code

1. a

   > b
   >
   > c

Expected Output

1. a

   > b
   >
   > c

Actual Output

1. a

   > b
   > c

lucacasonato avatar Apr 07 '23 13:04 lucacasonato