Files
wordpress-export-to-markdown/src/frontmatter/author.js
T
2024-02-26 14:28:48 -05:00

6 lines
157 B
JavaScript

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