diff options
author | Tulir Asokan <tulir@maunium.net> | 2019-05-12 17:34:47 +0300 |
---|---|---|
committer | Tulir Asokan <tulir@maunium.net> | 2019-05-12 17:34:47 +0300 |
commit | 4bcdcd1ccd1d616d29614e5eaf8bfb1df679aa6d (patch) | |
tree | 0b8eb608ea4d592ea2a1ab06ba77254e75dd0148 /lib | |
parent | bedbc3d10a87146bba4cc37c356068ef8849a496 (diff) |
Fix go 1.11 and go get compatibility
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bfhtml/html.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bfhtml/html.go b/lib/bfhtml/html.go index cfffb96..75d72e1 100644 --- a/lib/bfhtml/html.go +++ b/lib/bfhtml/html.go @@ -19,7 +19,7 @@ package bfhtml import ( "io" - bf "github.com/russross/blackfriday/v2" + bf "gopkg.in/russross/blackfriday.v2" ) type HTMLRenderer struct { |