1
This commit is contained in:
Alex Yatskov 2018-01-08 09:24:26 -08:00
parent 6715cd8f62
commit e4acb8ee44
2 changed files with 16 additions and 16 deletions

View File

@ -4,10 +4,10 @@ import (
"log" "log"
"github.com/FooSoft/goldsmith" "github.com/FooSoft/goldsmith"
"github.com/FooSoft/goldsmith-devserver" "github.com/FooSoft/goldsmith-components/devserver"
"github.com/FooSoft/goldsmith-plugins/plugins/frontmatter" "github.com/FooSoft/goldsmith-components/plugins/frontmatter"
"github.com/FooSoft/goldsmith-plugins/plugins/layout" "github.com/FooSoft/goldsmith-components/plugins/layout"
"github.com/FooSoft/goldsmith-plugins/plugins/markdown" "github.com/FooSoft/goldsmith-components/plugins/markdown"
) )
type builder struct{} type builder struct{}

View File

@ -26,18 +26,18 @@ import (
"log" "log"
"github.com/FooSoft/goldsmith" "github.com/FooSoft/goldsmith"
"github.com/FooSoft/goldsmith-devserver" "github.com/FooSoft/goldsmith-components/devserver"
"github.com/FooSoft/goldsmith-plugins/plugins/breadcrumbs" "github.com/FooSoft/goldsmith-components/plugins/breadcrumbs"
"github.com/FooSoft/goldsmith-plugins/plugins/collection" "github.com/FooSoft/goldsmith-components/plugins/collection"
"github.com/FooSoft/goldsmith-plugins/plugins/dom" "github.com/FooSoft/goldsmith-components/plugins/dom"
"github.com/FooSoft/goldsmith-plugins/plugins/frontmatter" "github.com/FooSoft/goldsmith-components/plugins/frontmatter"
"github.com/FooSoft/goldsmith-plugins/plugins/index" "github.com/FooSoft/goldsmith-components/plugins/index"
"github.com/FooSoft/goldsmith-plugins/plugins/layout" "github.com/FooSoft/goldsmith-components/plugins/layout"
"github.com/FooSoft/goldsmith-plugins/plugins/markdown" "github.com/FooSoft/goldsmith-components/plugins/markdown"
"github.com/FooSoft/goldsmith-plugins/plugins/paginate" "github.com/FooSoft/goldsmith-components/plugins/paginate"
"github.com/FooSoft/goldsmith-plugins/plugins/syntax" "github.com/FooSoft/goldsmith-components/plugins/syntax"
"github.com/FooSoft/goldsmith-plugins/plugins/tags" "github.com/FooSoft/goldsmith-components/plugins/tags"
"github.com/FooSoft/goldsmith-plugins/plugins/thumbnail" "github.com/FooSoft/goldsmith-components/plugins/thumbnail"
"github.com/PuerkitoBio/goquery" "github.com/PuerkitoBio/goquery"
) )