dprint / dprint-plugin-markdown

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

Bug: Ignore comments not respected. #123

Open marvinhagemeister opened 1 week ago

marvinhagemeister commented 1 week ago

Describe the bug

The formatting ignore comments don't seem to work inside markdown

dprint-plugin-markdown version: x.x.x deno 2.0.0-rc.0+42cf762

Input Code

<!-- dprint-ignore-start -->
```md
# Heading 1
## Heading 2

Heading 1
=======

Heading 2
------------

**Expected Output**

````md
<!-- dprint-ignore-start -->
```md
# Heading 1
## Heading 2

Heading 1
=======

Heading 2
------------

**Actual Output**

````md
<!-- dprint-ignore-start -->
```md
# Heading 1
## Heading 2

# Heading 1

## Heading 2