-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate-readme.js
71 lines (62 loc) · 1.9 KB
/
generate-readme.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const fs = require('fs');
const path = require('path');
const url = require('url');
const markdownMagic = require('markdown-magic');
const dirname = path.resolve();
const toTitleCase = (str) => {
return str.replace(
/\w\S*/g,
(txt) => txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase()
);
};
const formatPluginName = (string) => {
return toTitleCase(string.replace(/-/g, ' '));
};
const username = (repo) => {
if (!repo) {
return null;
}
const o = url.parse(repo);
var urlPath = o.path; // eslint-disable-line
if (urlPath.length && urlPath.charAt(0) === '/') {
urlPath = urlPath.slice(1);
}
urlPath = urlPath.split('/')[0];
return urlPath;
};
const config = {
transforms: {
/*
In README.md the below comment block adds the list to the readme
<!-- AUTO-GENERATED-CONTENT:START (GENERATE_EXAMPLES_TABLE)-->
examples list will be generated here
<!-- AUTO-GENERATED-CONTENT:END -->
*/
EXAMPLES_TABLE() {
const exampleFile = path.join(dirname, 'examples.json');
console.log({ exampleFile });
const examples = JSON.parse(fs.readFileSync(exampleFile, 'utf8'));
// Make table header
let md = '| Example | Author |\n';
md += '|:-------|:------:|\n';
// Sort alphabetically
examples
.sort((a, b) => (a.name < b.name ? -1 : 1))
.forEach((data) => {
// add table rows
const userName = username(data.githubUrl);
const profileURL = `http://github.com/${userName}`;
md += `| **[${formatPluginName(data.name)}](${
data.githubUrl
})** <br/>`;
md += ` ${data.description} | [${userName}](${profileURL}) |\n`;
});
return md.replace(/^\s+|\s+$/g, '');
},
},
};
const markdownPath = path.join(dirname, 'README.md');
console.log({ markdownPath });
markdownMagic(markdownPath, config, () => {
console.log('Docs updated!');
});