hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit f768c27f0d1a554f36e873a6d8f61628525380c4
parent 81c13171a985b89f2af6682dbd1d4b8766cb9af7
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Thu,  3 Aug 2017 15:58:55 +0200

helpers: Remove some unused funcs

Diffstat:
Mhelpers/content_renderer.go | 6------
1 file changed, 0 insertions(+), 6 deletions(-)
diff --git a/helpers/content_renderer.go b/helpers/content_renderer.go
@@ -22,12 +22,6 @@ import (
 	"github.com/russross/blackfriday"
 )
 
-// LinkResolverFunc describes a custom function to resolve a given link.
-type LinkResolverFunc func(ref string) (string, error)
-
-// FileResolverFunc describes a custom function to resolve a given file path.
-type FileResolverFunc func(ref string) (string, error)
-
 // HugoHTMLRenderer wraps a blackfriday.Renderer, typically a blackfriday.Html
 // Enabling Hugo to customise the rendering experience
 type HugoHTMLRenderer struct {