1
0
mirror of https://github.com/danog/gojekyll.git synced 2025-01-23 08:01:18 +01:00

Add a dummy for jekyll-sass-converter

This commit is contained in:
Oliver Steele 2017-07-05 16:54:48 -04:00
parent fc3a27f230
commit 97e3cd3610

View File

@ -43,14 +43,18 @@ func init() {
return nil
})
registerPlugin("jekyll-seo-tag", func(ctx PluginContext, h pluginHelper) error {
h.stubbed()
h.tag("seo", h.makeUnimplementedTag())
return nil
})
// the following plugins are always active
// no warning but effect; the server runs in this mode anyway
registerPlugin("jekyll-live-reload", func(ctx PluginContext, h pluginHelper) error {
return nil
})
registerPlugin("jekyll-seo-tag", func(ctx PluginContext, h pluginHelper) error {
h.stubbed()
h.tag("seo", h.makeUnimplementedTag())
registerPlugin("jekyll-sass-converter", func(ctx PluginContext, h pluginHelper) error {
return nil
})
}