-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontformatter.js
56 lines (48 loc) · 1.43 KB
/
frontformatter.js
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
const fs = require('fs')
const matter = require('gray-matter')
const toml = require('toml')
const { join } = require('path')
const prettier = require('prettier')
const markdownlint = require('markdownlint')
module.exports = exports = transform
function transform(path, addProps, removeProps, markdownOptions) {
const linterErrors = {}
fs.readdirSync(join(process.cwd(), path))
.filter((f) => f.endsWith('.md'))
.forEach((file) => {
const raw = fs.readFileSync(`${path}/${file}`, 'utf8')
let options = {}
if (raw.startsWith('+++')) {
options = {
delimiters: '+++',
language: 'toml',
engines: {
toml: toml.parse.bind(toml)
}
}
}
const fm = matter(raw, options)
removeProps.forEach((prop) => {
delete fm.data[prop]
})
const preFormat = fm.stringify(addProps, {
language: 'yaml'
})
const postFormat = prettier.format(preFormat, {
printWidth: 80,
proseWrap: 'always',
parser: 'markdown'
})
if (markdownOptions) {
markdownOptions.strings = {
content: postFormat
}
const linterResults = markdownlint.sync(markdownOptions)
linterErrors[file] = linterResults
}
fs.writeFileSync(`out/${file}`, postFormat)
})
if (markdownOptions) {
fs.writeFileSync(`src/errors.json`, JSON.stringify(linterErrors, null, 2))
}
}