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