Skip to content

Commit

Permalink
test(#31): replicate reported error
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Jun 10, 2024
1 parent 548ada0 commit 9d23d5b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions tests/format/fixtures/text.md
Original file line number Diff line number Diff line change
Expand Up @@ -1547,3 +1547,40 @@ Anchor links (https://github.com/KyleKing/mdformat-mkdocs/issues/25)
.
[](){#some-anchor-name}
.

Broken code block because of `>` (https://github.com/KyleKing/mdformat-mkdocs/issues/31)
.
# Title

1. Without '<'

```bash
echo \
container name>
```

1. With '<'

```bash
echo \
<container name>
echo $VAR
```
.
# Title

1. Without '\<'

```bash
echo \
container name>
```

1. With '\<'

```bash
echo \
<container name>
echo $VAR
```
.

0 comments on commit 9d23d5b

Please sign in to comment.