blackfriday icon indicating copy to clipboard operation
blackfriday copied to clipboard

Blackfriday: a markdown processor for Go

Results 121 blackfriday issues
Sort by recently updated
recently updated
newest added

looks like this is a dep of a dep in our project...when running `go run .` it's doing some go find/gets and we get: ``` cm safe push: gopkg.in/russross/blackfriday.v2: go.mod...

Image links containing parentheses like `![foo with a title](/bar/ "title with ()")` aren't parsed correctly. FYI, I've added the following test case in `TestInlineLink` in `inline_test.go` to see how it...

I did upgrade from v1 to v2 recently and I am noticing that my lists do not render properly. Upon investigating I see that I am having "\r\n" in my...

Hello, We have found an issue with this package while fuzzing it. This is the minimal repro case: https://play.golang.org/p/Eea7_GIQJGe

Running the following minimal working example: ```go package main import ( "gopkg.in/russross/blackfriday.v2" ) func main() { blackfriday.Run([]byte(` whatever : foo [panics]: [test] [test]: done`)) } ``` results in a panic:...

Following [#378](https://github.com/russross/blackfriday/issues/378), it would be great to add non-breaking thin spaces also to other punctuation marks and currency symbols, according to [Unicode : Space around punctuation](http://unicode.org/udhr/n/notes_fra.html) and [Non-breaking space#In France](https://fr.wikipedia.org/wiki/Espace_ins%C3%A9cable#En_France):...

An indented Block Quote, a Paragraph and a List within a List Item are not parsed as children to that List Item. markdown ``` * Foo > Bar Foo -...

There still are a few XXX markers where it's clear from the code that it should deal with \r, but I couldn't pin-point a test case to exercise it yet....

- Originally found as a bug in kubernetes/website#16640 - Originally found as a bug in Hugo gohugoio/hugo#6438 Tested v1 and v2. Both affected. ## Short Description Whitespace(s) or Tab before...