src/modules/posts.js (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | 'use strict' const fs = require('fs') const path = require('path') const matter = require('gray-matter') const Markdown = require('markdown-it') const grayMatterOptions = { lang: 'toml', delims: '+++' } const markdownOptions = { html: true, typographer: true } const markdown = new Markdown(markdownOptions) function* lowercaseKeys (iterator) { for (let [k, v] of iterator) { yield [String(k).toLowerCase(), v] } } function canonicaliseMetadata (meta) { if (meta.data) { meta.data = new Map(lowercaseKeys(Object.entries(meta.data))) } else { meta.data = new Map() } return meta } function getTitle (file) { return path.basename(file.path, path.extname(file.path)) } function render (post) { return markdown.render(post.content) } function get (filename) { const fileMatter = matter.read(filename, grayMatterOptions) fileMatter.basename = getTitle(fileMatter) return canonicaliseMetadata(fileMatter) } function getFolder (folder) { return new Map( fs .readdirSync(folder) .map(f => path.resolve(folder, f)) .map(get) .map(f => [getTitle(f), f]) ) } function toTags (posts) { const tags = new Map() for (let [, post] of posts) { if (post.data.has('tags')) { for (let tag of post.data.get('tags')) { tags.set(tag, (tags.get(tag) || []).concat([post])) } } } return tags } module.exports = { get, getFolder, toTags, render } |