Skip to content

Commit e39156e

Browse files
authored
Merge pull request #67 from johanbrandhorst/update-blackfriday-reference
Correct the blackfriday import reference
2 parents 5349709 + 4407ba1 commit e39156e

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414

1515
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
1616
.glide/
17+
go.sum

go.mod

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ require (
1010
github.com/montanaflynn/stats v0.0.0-20151014174947-eeaced052adb // indirect
1111
github.com/neurosnap/sentences v1.0.6 // indirect
1212
github.com/pkg/errors v0.8.1
13+
github.com/russross/blackfriday/v2 v2.0.1
1314
github.com/sergi/go-diff v1.0.0
1415
github.com/shogo82148/go-shuffle v0.0.0-20170808115208-59829097ff3b // indirect
1516
github.com/shurcooL/sanitized_anchor_name v0.0.0-20170918181015-86672fcb3f95 // indirect
1617
github.com/spf13/pflag v1.0.0
1718
github.com/stretchr/testify v1.3.0
18-
golang.org/x/exp v0.0.0-20171209012058-072991165226
19+
golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2
1920
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80
2021
golang.org/x/text v0.3.2
21-
gonum.org/v1/gonum v0.0.0-20180205154402-996b88e8f894
22+
gonum.org/v1/gonum v0.6.1
2223
gopkg.in/neurosnap/sentences.v1 v1.0.6 // indirect
23-
gopkg.in/russross/blackfriday.v2 v2.0.1
2424
gopkg.in/src-d/go-billy-siva.v4 v4.3.0
2525
gopkg.in/src-d/go-billy.v4 v4.3.2
2626
gopkg.in/src-d/go-git.v4 v4.13.1
@@ -30,5 +30,6 @@ require (
3030
replace (
3131
github.com/sergi/go-diff v1.0.0 => github.com/sergi/go-diff v0.0.0-20180205163309-da645544ed44
3232
golang.org/x/text v0.3.2 => golang.org/x/text v0.3.0
33-
gopkg.in/russross/blackfriday.v2 => github.com/russross/blackfriday/v2 v2.0.1
3433
)
34+
35+
go 1.13

licensedb/internal/processors/markup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55

66
rst "github.com/hhatto/gorst"
7-
"gopkg.in/russross/blackfriday.v2"
7+
"github.com/russross/blackfriday/v2"
88
)
99

1010
// Markdown converts Markdown to plain text. It tries to revert all the decorations.

0 commit comments

Comments
 (0)