Skip to content

Commit

Permalink
fingers crossed
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnewhall committed Apr 13, 2021
1 parent aeae646 commit e08f4f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"text/template"

blackfriday "gopkg.in/russross/blackfriday.v2"
blackfriday "github.com/russross/blackfriday/v2"
)

var (
Expand Down
8 changes: 2 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
module github.com/davidnewhall/md2roff

go 1.15
go 1.16

replace gopkg.in/russross/blackfriday.v2 => github.com/russross/blackfriday/v2 v2.1.0

require (
gopkg.in/russross/blackfriday.v2 v2.1.0
)
require github.com/russross/blackfriday/v2 v2.1.0
2 changes: 1 addition & 1 deletion renderer.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"strings"

blackfriday "gopkg.in/russross/blackfriday.v2"
blackfriday "github.com/russross/blackfriday/v2"
)

// https://github.com/russross/blackfriday/blob/v2/markdown.go
Expand Down

0 comments on commit e08f4f4

Please sign in to comment.