russross / blackfriday

Blackfriday: a markdown processor for Go
Other
5.45k stars 602 forks source link

bugfix: Resolve #701 #702

Open soypat opened 2 years ago

soypat commented 2 years ago

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. Resolves #701