From a4e4cafc3091612e5d7029090170226ab937b43f Mon Sep 17 00:00:00 2001 From: Andrea Spacca Date: Sat, 11 May 2019 15:12:38 +0200 Subject: [PATCH] ISSUE-223 --- go.mod | 1 + server/handlers.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 5842e35..1583748 100644 --- a/go.mod +++ b/go.mod @@ -31,6 +31,7 @@ require ( golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a google.golang.org/api v0.5.0 gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 + gopkg.in/russross/blackfriday.v2 v2.0.1 ) replace gopkg.in/russross/blackfriday.v2 v2.0.1 => github.com/russross/blackfriday/v2 v2.0.1 diff --git a/server/handlers.go b/server/handlers.go index 6174176..9fbd028 100644 --- a/server/handlers.go +++ b/server/handlers.go @@ -35,7 +35,7 @@ import ( "encoding/json" "errors" "fmt" - "github.com/russross/blackfriday/v2" + blackfriday "gopkg.in/russross/blackfriday.v2" "html" html_template "html/template" "io"