summaryrefslogtreecommitdiffstats
path: root/helpers/pathspec.go
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/pathspec.go')
-rw-r--r--helpers/pathspec.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/helpers/pathspec.go b/helpers/pathspec.go
index 281203712..450391f16 100644
--- a/helpers/pathspec.go
+++ b/helpers/pathspec.go
@@ -26,6 +26,10 @@ import (
type PathSpec struct {
BaseURL
+ // If the baseURL contains a base path, e.g. https://example.com/docs, then "/docs" will be the BasePath.
+ // This will not be set if canonifyURLs is enabled.
+ BasePath string
+
disablePathToLower bool
removePathAccents bool
uglyURLs bool
@@ -124,6 +128,13 @@ func NewPathSpec(fs *hugofs.Fs, cfg config.Provider) (*PathSpec, error) {
ProcessingStats: NewProcessingStats(lang),
}
+ if !ps.canonifyURLs {
+ basePath := ps.BaseURL.url.Path
+ if basePath != "" && basePath != "/" {
+ ps.BasePath = basePath
+ }
+ }
+
publishDir := ps.AbsPathify(cfg.GetString("publishDir")) + FilePathSeparator
// If root, remove the second '/'
if publishDir == "//" {