1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-30 06:08:57 +01:00
gojekyll/commands/plugins.go

20 lines
526 B
Go
Raw Normal View History

2017-08-11 20:24:09 +02:00
package commands
import (
"fmt"
"github.com/danog/gojekyll/plugins"
2017-08-11 20:24:09 +02:00
)
var pluginsApp = app.Command("plugins", "List emulated plugins")
func pluginsCommand() error {
logger.label("Plugins:", "")
for _, name := range plugins.Names() {
fmt.Printf(" %s\n", name)
}
fmt.Println("\nhttps://github.com/danog/gojekyll/blob/master/docs/plugins.md describes plugin implementation status.")
2017-08-11 20:24:09 +02:00
fmt.Println("(This may not accurately describe your installation, if you are running an older version of gojekyll.)")
return nil
}