hugo/target/htmlredirect.go
2013-09-12 16:18:30 -07:00

19 lines
359 B
Go

package target
import (
helpers "github.com/spf13/hugo/template"
"path"
"strings"
)
type HTMLRedirectAlias struct {
PublishDir string
}
func (h *HTMLRedirectAlias) Translate(alias string) (aliasPath string, err error) {
if strings.HasSuffix(alias, "/") {
alias = alias + "index.html"
}
return path.Join(h.PublishDir, helpers.Urlize(alias)), nil
}