Alex Yatskov
e408fa9335
commit 106991bfd59bb95977045399f7b4e5f4e7addc56
Author: Alex Yatskov <alex@foosoft.net>
Date: Sat Jan 8 11:19:21 2022 -0800
Rename property functions
commit 07f6033d4e86df257806af16de002ce8fad3d67f
Author: Alex Yatskov <alex@foosoft.net>
Date: Sat Jan 8 11:16:46 2022 -0800
Update rewrite
commit ea2dc0b4d223d54832752f0efd3eb46d81d17b50
Author: Alex Yatskov <alex@foosoft.net>
Date: Fri Jan 7 22:47:17 2022 -0800
Add more property methods
commit e2f7f8dc7ebc5b668539e8233e323a7c256eced2
Author: Alex Yatskov <alex@foosoft.net>
Date: Fri Jan 7 22:39:23 2022 -0800
Add step indexing
commit a7ed2a0b1c95ed9fbb0bbd87c779cf51a92f0b5f
Author: Alex Yatskov <alex@foosoft.net>
Date: Fri Jan 7 20:50:19 2022 -0800
Use self
commit 7ecc01e508c06680dcb6b6ecd4265a7f72e2c933
Author: Alex Yatskov <alex@foosoft.net>
Date: Sun Aug 22 12:33:09 2021 -0700
Cleanup
commit 87dd28a4c14b88bea061ca913f68e272cca787f9
Author: Alex Yatskov <alex@foosoft.net>
Date: Sun Aug 22 12:09:41 2021 -0700
Cleanup
commit 129130128d2a50f119c46f70e7cb70ef421892ff
Merge: 629fce0
|
||
---|---|---|
cache.go | ||
context.go | ||
file_util.go | ||
file.go | ||
filter_util.go | ||
go.mod | ||
goldsmith.go | ||
interface.go | ||
LICENSE | ||
loader.go | ||
README.md | ||
saver.go |
Goldsmith
Goldsmith is a fast and easily extensible static website generator written in Go. In contrast to many other generators, Goldsmith does not force any design paradigms or file organization rules on the user, making it possible to generate anything from blogs to image galleries using the same tool.
Tutorial
Goldsmith does not use any configuration files, and all behavior customization happens in code. Goldsmith uses the builder pattern to establish a chain, which modifies files as they pass through it. Although the Goldsmith is short and (hopefully) easy to understand, it is often best to learn by example:
-
Start by copying files from a source directory to a destination directory (the simplest possible use case):
goldsmith. Begin(srcDir). // read files from srcDir End(dstDir) // write files to dstDir
-
Now let's convert any Markdown files to HTML fragments (while still copying the rest), using the Markdown plugin:
goldsmith. Begin(srcDir). // read files from srcDir Chain(markdown.New()). // convert *.md files to *.html files End(dstDir) // write files to dstDir
-
If we have any front matter in our Markdown files, we need to extract it using the, FrontMatter plugin:
goldsmith. Begin(srcDir). // read files from srcDir Chain(frontmatter.New()). // extract frontmatter and store it as metadata Chain(markdown.New()). // convert *.md files to *.html files End(dstDir) // write files to dstDir
-
Next, we should run our barebones HTML through a template to add elements like a header, footer, or a menu; for this we can use the Layout plugin:
goldsmith. Begin(srcDir). // read files from srcDir Chain(frontmatter.New()). // extract frontmatter and store it as metadata Chain(markdown.New()). // convert *.md files to *.html files Chain(layout.New()). // apply *.gohtml templates to *.html files End(dstDir) // write files to dstDir
-
Now, let's minify our files to reduce data transfer and load times for our site's visitors using the Minify plugin:
goldsmith. Begin(srcDir). // read files from srcDir Chain(frontmatter.New()). // extract frontmatter and store it as metadata Chain(markdown.New()). // convert *.md files to *.html files Chain(layout.New()). // apply *.gohtml templates to *.html files Chain(minify.New()). // minify *.html, *.css, *.js, etc. files End(dstDir) // write files to dstDir
-
Debugging problems in minified code can be tricky, so let's use the Condition filter to make minification occur only when we are ready for distribution.
goldsmith. Begin(srcDir). // read files from srcDir Chain(frontmatter.New()). // extract frontmatter and store it as metadata Chain(markdown.New()). // convert *.md files to *.html files Chain(layout.New()). // apply *.gohtml templates to *.html files FilterPush(condition.New(dist)). // push a dist-only conditional filter onto the stack Chain(minify.New()). // minify *.html, *.css, *.js, etc. files FilterPop(). // pop off the last filter pushed onto the stack End(dstDir) // write files to dstDir
-
Now that we have all of our plugins chained up, let's look at a complete example which uses DevServer to bootstrap a complete development sever which automatically rebuilds the site whenever source files are updated.
package main import ( "flag" "log" "github.com/FooSoft/goldsmith" "github.com/FooSoft/goldsmith-components/devserver" "github.com/FooSoft/goldsmith-components/filters/condition" "github.com/FooSoft/goldsmith-components/plugins/frontmatter" "github.com/FooSoft/goldsmith-components/plugins/layout" "github.com/FooSoft/goldsmith-components/plugins/markdown" "github.com/FooSoft/goldsmith-components/plugins/minify" ) type builder struct { dist bool } func (b *builder) Build(srcDir, dstDir, cacheDir string) { errs := goldsmith. Begin(srcDir). // read files from srcDir Chain(frontmatter.New()). // extract frontmatter and store it as metadata Chain(markdown.New()). // convert *.md files to *.html files Chain(layout.New()). // apply *.gohtml templates to *.html files FilterPush(condition.New(b.dist)). // push a dist-only conditional filter onto the stack Chain(minify.New()). // minify *.html, *.css, *.js, etc. files FilterPop(). // pop off the last filter pushed onto the stack End(dstDir) // write files to dstDir for _, err := range errs { log.Print(err) } } func main() { port := flag.Int("port", 8080, "server port") dist := flag.Bool("dist", false, "final dist mode") flag.Parse() devserver.DevServe(&builder{*dist}, *port, "content", "build", "cache") }
Samples
Below are some examples of Goldsmith usage which can used to base your site on:
- Basic Sample: a great starting point, this is the sample site from the tutorial.
- Bootstrap Sample: a slightly more advanced sample using Bootstrap.
- FooSoft.net: I've been "dogfooding" Goldsmith by using it to build my homepage for years.
Components
A growing set of plugins, filters, and other tools are provided to make it easier to get started with Goldsmith.
Plugins
- Absolute: Convert relative HTML file references to absolute paths.
- Breadcrumbs: Generate metadata required to build breadcrumb navigation.
- Collection: Group related pages into named collections.
- Document: Enable simple DOM modification via an API similar to jQuery.
- Forward: Create simple redirections for pages that have moved to a new URL.
- FrontMatter: Extract the JSON, YAML, or TOML metadata stored in your files.
- Index: Create metadata for directory file listings and generate directory index pages.
- Layout: Transform your HTML files with Go templates.
- LiveJs: Inject JavaScript code to automatically reload pages when modified.
- Markdown: Render Markdown documents as HTML fragments.
- Minify: Remove superfluous data from a variety of web formats.
- Pager: Split arrays of metadata into standalone pages.
- Summary: Extract summary and title metadata from HTML files.
- Syntax: Enable syntax highlighting for pre-formatted code blocks.
- Tags: Generate tag clouds and indices from file metadata.
- Thumbnail: Build thumbnails for a variety of common image formats.
Filters
- Condition: Filter files based on a single condition.
- Operator: Join filters using
logical
AND
,OR
, andNOT
operators. - Wildcard: Filter files using path
wildcards (
*
,?
, etc.)