mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-13 20:24:00 +02:00
resources/page: Fix permalinks pattern detection for some of the sections variants
See #8363
This commit is contained in:
@@ -51,10 +51,6 @@ func (p PermalinkExpander) callback(attr string) (pageToPermaAttribute, bool) {
|
||||
return callback, true
|
||||
}
|
||||
|
||||
if referenceTime.Format(attr) != attr {
|
||||
return p.pageToPermalinkDate, true
|
||||
}
|
||||
|
||||
if strings.HasPrefix(attr, "sections[") {
|
||||
fn := p.toSliceFunc(strings.TrimPrefix(attr, "sections"))
|
||||
return func(p Page, s string) (string, error) {
|
||||
@@ -62,6 +58,11 @@ func (p PermalinkExpander) callback(attr string) (pageToPermaAttribute, bool) {
|
||||
}, true
|
||||
}
|
||||
|
||||
// Make sure this comes after all the other checks.
|
||||
if referenceTime.Format(attr) != attr {
|
||||
return p.pageToPermalinkDate, true
|
||||
}
|
||||
|
||||
return nil, false
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user