1
mirror of https://gitlab.com/commento/commento.git synced 2025-06-29 22:56:37 -04:00

dep: add dependency version pinning with dep

Closes https://gitlab.com/commento/commento-ce/issues/69
This commit is contained in:
Adhityaa Chandrasekar
2018-08-12 23:36:51 +05:30
parent d41e8b0372
commit 999ba0c419
5 changed files with 211 additions and 2 deletions

View File

@ -2,7 +2,7 @@ package main
import (
"github.com/microcosm-cc/bluemonday"
"gopkg.in/russross/blackfriday.v1"
"github.com/russross/blackfriday"
)
var policy *bluemonday.Policy

View File

@ -1,7 +1,7 @@
package main
import (
"gopkg.in/russross/blackfriday.v1"
"github.com/russross/blackfriday"
)
func markdownToHtml(markdown string) string {