@@ -19,8 +19,8 @@ const config = {
19
19
GENERATE_SERVERLESS_PLUGIN_TABLE : function ( content , options ) {
20
20
const commandsFile = path . join ( __dirname , 'plugins.json' )
21
21
const plugins = JSON . parse ( fs . readFileSync ( commandsFile , 'utf8' ) )
22
- let md = '| Plugin | Author | Stats |\n'
23
- md += '|:---------------------------|:---------:|:--------- --:|\n'
22
+ let md = '| Plugin | Stats |\n'
23
+ md += '|:---------------------------|:-----------:|\n'
24
24
25
25
plugins . sort ( function ( a , b ) {
26
26
const aName = a . name . toLowerCase ( ) ;
@@ -31,9 +31,9 @@ const config = {
31
31
const userName = username ( data . githubUrl )
32
32
const profileURL = `http://github.com/${ userName } `
33
33
const repoName = data . githubUrl . split ( '.com/' ) [ 1 ] ;
34
- md += `| **[${ formatPluginName ( data . name ) } - \`${ data . name . toLowerCase ( ) } \`](${ data . githubUrl } )** <br/>`
35
- md += ` ${ data . description } | [ ${ userName } ]( ${ profileURL } ) | `
36
- md += ` <br/> |\n`
34
+ md += `| **[${ formatPluginName ( data . name ) } - \`${ data . name . toLowerCase ( ) } \`](${ data . githubUrl } )** <br/> by [ ${ userName } ]( ${ profileURL } ) <br/> `
35
+ md += ` ${ data . description } | `
36
+ md += ` <br/> |\n`
37
37
} ) ;
38
38
return md . replace ( / ^ \s + | \s + $ / g, '' )
39
39
}
0 commit comments