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
If we remove the third item from the markdown list we get the following. Few observations:
First item info string escaping the code block? what?
Second item is still inline.
Now the second item is no longer a list item, The whole markdown content has been interpreted as a single list node. Not sure what could possibly be causing this...
`isFenceLine` was being called within `listItem` for finding code blocks. It was unable to detect code blocks with an info string since a nil string pointer was being passed in. Now the pointer is not nil so info-string code blocks are correctly parsed within lists.
Using blackfriday v2.1.0, default parameters
The following markdown has 3 list items.
Here is the html result. Some observations:
If we remove the third item from the markdown list we get the following. Few observations:
Something similar happens if we delete the first item of the list.
Please note the tabs in front of the code blocks have no effect on the bug.
The text was updated successfully, but these errors were encountered: