feat: update compose to support new frontmatter options

This commit is contained in:
Timothy Lin
2021-07-04 17:19:35 +08:00
7 changed files with 395 additions and 53 deletions

View File

@ -7,10 +7,10 @@ const generateRssItem = (post) => `
<guid>${siteMetadata.siteUrl}/blog/${post.slug}</guid>
<title>${escape(post.title)}</title>
<link>${siteMetadata.siteUrl}/blog/${post.slug}</link>
<description>${escape(post.summary)}</description>
${post.summary && <description>escape(post.summary)</description>}
<pubDate>${new Date(post.date).toUTCString()}</pubDate>
<author>${siteMetadata.email} (${siteMetadata.author})</author>
${post.tags.map((t) => `<category>${t}</category>`).join('')}
${post.tags && post.tags.map((t) => `<category>${t}</category>`).join('')}
</item>
`

View File

@ -3,7 +3,7 @@ import path from 'path'
const pipe = (...fns) => (x) => fns.reduce((v, f) => f(v), x)
const flatternArray = (input) =>
const flattenArray = (input) =>
input.reduce((acc, item) => [...acc, ...(Array.isArray(item) ? item : [item])], [])
const map = (fn) => (input) => input.map(fn)
@ -15,6 +15,6 @@ const walkDir = (fullPath) => {
const pathJoinPrefix = (prefix) => (extraPath) => path.join(prefix, extraPath)
const getAllFilesRecursively = (folder) =>
pipe(fs.readdirSync, map(pipe(pathJoinPrefix(folder), walkDir)), flatternArray)(folder)
pipe(fs.readdirSync, map(pipe(pathJoinPrefix(folder), walkDir)), flattenArray)(folder)
export default getAllFilesRecursively