russross / blackfriday

Blackfriday: a markdown processor for Go
Other
5.42k stars 598 forks source link

why remove v2 code? #558

Open peterwillcn opened 5 years ago

peterwillcn commented 5 years ago
 [ERROR]   Error scanning github.com/russross/blackfriday/v2: cannot find package "." in:
        /Users/mac/.glide/cache/src/https-github.com-russross-blackfriday/v2
[ERROR]   Failed to retrieve a list of dependencies: Error resolving imports
orgmatileg commented 5 years ago

Same issue hereee :'( do you know how to fix glide depedencies because of this issue?

enrichman commented 5 years ago

I was having the same issue with godep. I've ended up fixing it like this:

go get gopkg.in/russross/blackfriday.v2
cp -R $GOPATH/src/gopkg.in/russross/blackfriday.v2 $GOPATH/src/github.com/russross/blackfriday/v2

🙁

kopaul commented 5 years ago

Same issue for me as well.

4j4y commented 5 years ago

Facing the same issue 😞

atetubou commented 5 years ago

Having replace gopkg.in/russross/blackfriday.v2 => github.com/russross/blackfriday/v2 v2.0.1 in go.mod may fix the issue if you use go modules.

andig commented 5 years ago

You seem to have the same root cause as #565