diff options
author | Matthew Holt <mholt@users.noreply.github.com> | 2019-07-15 17:33:08 -0600 |
---|---|---|
committer | Matthew Holt <mholt@users.noreply.github.com> | 2019-07-15 17:33:08 -0600 |
commit | f2171812931114dc48a9d27122a8479af8b2c8f3 (patch) | |
tree | 791c6fe14433dadfc7afc3f50866782809dd44a0 /modules/caddyhttp/templates | |
parent | ccb5d19c258a1f4ec87ec7cdc4aedf1f1c7007dc (diff) |
mod: Use blackfriday's standard v2 module import path
Diffstat (limited to 'modules/caddyhttp/templates')
-rw-r--r-- | modules/caddyhttp/templates/tplcontext.go | 2 |
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. |