forked from serverless/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate-docs.js
67 lines (58 loc) · 1.88 KB
/
generate-docs.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
/**
* This example generated adds content to the repos README.md file
*/
const fs = require('fs')
const url = require('url')
const path = require('path')
const markdownMagic = require('markdown-magic')
const config = {
transforms: {
/*
In readme.md the below comment block adds the list to the readme
<!-- AUTO-GENERATED-CONTENT:START (GENERATE_SERVERLESS_PLUGIN_TABLE)-->
plugin list will be generated here
<!-- AUTO-GENERATED-CONTENT:END -->
*/
GENERATE_SERVERLESS_PLUGIN_TABLE: function(content, options) {
const commandsFile = path.join(__dirname, 'plugins.json')
const plugins = JSON.parse(fs.readFileSync(commandsFile, 'utf8'))
let md = '| Plugin | Author |\n'
md += '|:---------------------------|:---------:|\n'
plugins.sort(function (a, b) {
return a.name < b.name ? -1 : 1;
}).forEach(function(data) {
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, '')
}
}
}
function username(repo) {
if (!repo) {
return null;
}
var o = url.parse(repo);
var path = o.path;
if (path.length && path.charAt(0) === '/') {
path = path.slice(1);
}
path = path.split('/')[0];
return path;
}
function formatPluginName (string) {
return toTitleCase(string.replace(/-/g, ' '))
}
function toTitleCase(str) {
return str.replace(/\w\S*/g, function(txt) {
return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
}
)
}
const markdownPath = path.join(__dirname, 'README.md')
// const markdownPath = path.join(__dirname, '..', 'test/fixtures/test.md')
markdownMagic(markdownPath, config, function() {
console.log('Docs updated!')
})