Files
wordpress-export-to-markdown/src/frontmatter/coverImage.js
T
2024-02-26 11:20:29 -05:00

6 lines
206 B
JavaScript

// get cover image filename, previously decoded and set on post.meta
// this one is unique as it relies on special logic executed by the parser
module.exports = (post) => {
return post.meta.coverImage;
};