summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/templates/tplcontext.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-07-15 17:33:08 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-07-15 17:33:08 -0600
commitf2171812931114dc48a9d27122a8479af8b2c8f3 (patch)
tree791c6fe14433dadfc7afc3f50866782809dd44a0 /modules/caddyhttp/templates/tplcontext.go
parentccb5d19c258a1f4ec87ec7cdc4aedf1f1c7007dc (diff)
mod: Use blackfriday's standard v2 module import path
Diffstat (limited to 'modules/caddyhttp/templates/tplcontext.go')
-rw-r--r--modules/caddyhttp/templates/tplcontext.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddyhttp/templates/tplcontext.go b/modules/caddyhttp/templates/tplcontext.go
index 548b3e1..ffcc636 100644
--- a/modules/caddyhttp/templates/tplcontext.go
+++ b/modules/caddyhttp/templates/tplcontext.go
@@ -27,7 +27,7 @@ import (
"github.com/Masterminds/sprig"
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
- "gopkg.in/russross/blackfriday.v2"
+ "github.com/russross/blackfriday/v2"
)
// templateContext is the templateContext with which HTTP templates are executed.