1
0
mirror of synced 2025-12-19 18:10:59 -05:00
Files
docs/script/standardize-frontmatter-order.js
Kevin Heis 11d8e415da Check repository references (#16680)
* Check repository references

* Remove "foundRepoNames" that I used to find all the unique names

* A little speed up with Set

* Ignore a few files

* Remove remaining references

* Update README.md
2020-12-03 16:41:03 +00:00

38 lines
1023 B
JavaScript
Executable File

#!/usr/bin/env node
const fs = require('fs')
const path = require('path')
const walk = require('walk-sync')
const matter = require('gray-matter')
const { schema } = require('../lib/frontmatter')
const properties = Object.keys(schema.properties)
const contentDir = path.join(__dirname, '../content')
const contentFiles = walk(contentDir, { includeBasePath: true })
.filter(relativePath => relativePath.endsWith('.md') && !relativePath.includes('README'))
// [start-readme]
//
// Run this script to standardize frontmatter fields in all content files,
// per the order:
// - title
// - intro
// - product callout
// - productVersion
// - map topic status
// - hidden status
// - layout
// - redirect
//
// [end-readme]
contentFiles.forEach(fullPath => {
const { content, data } = matter(fs.readFileSync(fullPath, 'utf8'))
const newData = {}
properties.forEach(prop => {
if (data[prop]) newData[prop] = data[prop]
})
fs.writeFileSync(fullPath, matter.stringify(content, newData, { lineWidth: 10000 }))
})