Skip to content

Commit 5de3913

Browse files
jmooringbep
authored andcommitted
config/allconfig: Deprecate :filename and :slugorfilename tokens
1 parent 7b7a0f3 commit 5de3913

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

‎config/allconfig/allconfig.go

+9
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,15 @@ func (c *Config) CompileConfig(logger loggers.Logger) error {
427427
c.Services.X.DisableInlineCSS = c.Services.Twitter.DisableInlineCSS
428428
}
429429

430+
// Legacy permalink tokens
431+
vs := fmt.Sprintf("%v", c.Permalinks)
432+
if strings.Contains(vs, ":filename") {
433+
hugo.Deprecate("the \":filename\" permalink token", "Use \":contentbasename\" instead.", "0.144.0")
434+
}
435+
if strings.Contains(vs, ":slugorfilename") {
436+
hugo.Deprecate("the \":slugorfilename\" permalink token", "Use \":slugorcontentbasename\" instead.", "0.144.0")
437+
}
438+
430439
c.C = &ConfigCompiled{
431440
Timeout: timeout,
432441
BaseURL: baseURL,

0 commit comments

Comments
 (0)