···1616 Render(dest string, data interface{}, drafts bool) error
17171818 // Frontmatter will not be populated if Render hasn't been called.
1919- Frontmatter() map[string]string
1919+ Frontmatter() map[string]any
2020 // Body will not be populated if Render hasn't been called.
2121 Body() string
2222 Basename() string
···24242525// Only used for building indexes and Atom feeds
2626type Post struct {
2727- Meta map[string]string
2727+ Meta map[string]any
2828 // HTML-formatted body of post
2929 Body string
3030}