Closed
Description
What version of Hugo are you using (hugo version
)?
hugo v0.141.0-e7bd51698e5c3778a86003018702b1a7dcb9559a+extended linux/amd64 BuildDate=2025-01-16T13:11:18Z VendorInfo=gohugoio
Does this issue reproduce with the latest release?
I don't know
👋 First of all I must say that I LOVE hugo, thanks for this amazing project.
Let's get to the point, recently I have migrated my hugo to content adapters and I found that when using a content adapter the related pages are not created by keywords anymore.
If I copy keywords to params.tags it works again.
I'm using hugo default configuration for related content.
I create a page with this:
{{ $page := dict
"kind" "page"
"title" $post.title
"dates" $dates
"keywords" "one"
"content" $content
"path" $postPath
}}
As keywords create related content in markdown I suppose that this is a bug.