1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 19:34:52 +01:00
gojekyll/commands/plugins.go

20 lines
526 B
Go

package commands
import (
"fmt"
"github.com/danog/gojekyll/plugins"
)
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.")
fmt.Println("(This may not accurately describe your installation, if you are running an older version of gojekyll.)")
return nil
}