dprint / dprint-plugin-markdown

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

Hard line break in list item gets extra newline #87

Closed mgeisler closed 11 months ago

mgeisler commented 11 months ago

Describe the bug

dprint-plugin-markdown version: 0.16.1

Input Code

Hard line break in a list item, either with two spaces:

- foo  
  bar

or with a backslash:

- foo\
  bar

Expected Output

Either:

- foo  
  bar

or:

- foo\
  bar

Actual Output

- foo
  \
  bar