1 parent 7b7a0f3 commit 5de3913Copy full SHA for 5de3913
config/allconfig/allconfig.go
@@ -427,6 +427,15 @@ func (c *Config) CompileConfig(logger loggers.Logger) error {
427
c.Services.X.DisableInlineCSS = c.Services.Twitter.DisableInlineCSS
428
}
429
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
+
439
c.C = &ConfigCompiled{
440
Timeout: timeout,
441
BaseURL: baseURL,
0 commit comments