Files
wordpress-export-to-markdown/src/frontmatter/author.js
T

6 lines
160 B
JavaScript
Raw Normal View History

2024-02-26 12:40:33 -05:00
// get author, without decoding
// WordPress doesn't allow funky characters in author names anyway
module.exports = (post) => {
return post.data.creator[0];
}