Files
wordpress-export-to-markdown/src/frontmatter/author.js
T
2024-02-26 12:40:33 -05:00

6 lines
160 B
JavaScript

// get author, without decoding
// WordPress doesn't allow funky characters in author names anyway
module.exports = (post) => {
return post.data.creator[0];
}