mirror of
https://github.com/10h30/wordpress-export-to-markdown.git
synced 2026-07-11 18:56:14 +09:00
6 lines
206 B
JavaScript
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;
|
|
};
|