mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
target: Simplify
This commit is contained in:
parent
3739871f1e
commit
a721fbed1d
1 changed files with 1 additions and 3 deletions
|
@ -104,9 +104,7 @@ func (h *HTMLRedirectAlias) Translate(alias string) (aliasPath string, err error
|
|||
}
|
||||
|
||||
// Add the final touch
|
||||
if strings.HasPrefix(alias, helpers.FilePathSeparator) {
|
||||
alias = alias[1:]
|
||||
}
|
||||
alias = strings.TrimPrefix(alias, helpers.FilePathSeparator)
|
||||
if strings.HasSuffix(alias, helpers.FilePathSeparator) {
|
||||
alias = alias + "index.html"
|
||||
} else if !strings.HasSuffix(alias, ".html") {
|
||||
|
|
Loading…
Reference in a new issue