fix: modified time data of frontmatter didnt loaded. (#2165)
| | |
| | | const created = coalesceAliases(data, ["created", "date"]) |
| | | if (created) { |
| | | data.created = created |
| | | data.modified ||= created // if modified is not set, use created |
| | | } |
| | | |
| | | const modified = coalesceAliases(data, [ |
| | |
| | | "last-modified", |
| | | ]) |
| | | if (modified) data.modified = modified |
| | | data.modified ||= created // if modified is not set, use created |
| | | |
| | | const published = coalesceAliases(data, ["published", "publishDate", "date"]) |
| | | if (published) data.published = published |
| | | |