Files
wordpress-export-to-markdown/src/frontmatter/title.js
T
2024-02-26 11:20:29 -05:00

5 lines
139 B
JavaScript

// get simple post title, but not decoded like other frontmatter string fields
module.exports = (post) => {
return post.data.title[0];
};