russross / blackfriday

Blackfriday: a markdown processor for Go
Other
5.41k stars 596 forks source link

bugfix: Resolve #701 #702

Open soypat opened 1 year ago

soypat commented 1 year 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