You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've just discovered PR #476 is causing the following regression in v1. /cc @tfogo@client9
Given this Markdown input:
### Codeblock within list
- list entry 1
```
if (i == 5)
break;
```
- list entry 2
### Stuff that comes later
stuff here
Everything works as expected:
However, if one uses a fenced code block with syntax highlighting, everything that comes after the fenced code block ends up being a part of "list entry 1":
### Codeblock within list
- list entry 1
```C
if (i == 5)
break;
```
- list entry 2
### Stuff that comes later
stuff here
I.e., it parses as if the input was:
### Codeblock within list
- list entry 1
```C
if (i == 5)
break;
```
- list entry 2
### Stuff that comes later
stuff here