I do not have time to work on this project these days, but the code lives on if others wish to use it. If you're interested in taking over, fix something via Pull Request and I'm happy to hand things over to you if you're interested.
Jekyll-like static site generator for node.js that aims to be as compatible as possible with Jekyll.
Core functionality is identical to Jekyll:
/example/
from /example.html
via pretty_urls
configuration variable)There are a few bonus features not present in the default install of Jekyll:
Finally, there are a few missing features:
Generated directly from enfield --help
Enfield is a blog-aware static-site generator modeled after Jekyll
Commands:
build Build your site
help Display global or [command] help documentation.
new Creates a new Jekyll site scaffold in PATH
serve Serve your site locally
Global Options:
-s, --source [DIR]
Source directory (defaults to ./)
-d, --destination [DIR]
Destination directory (defaults to ./_site)
--safe
Safe mode (defaults to false)
--plugins PLUGINS_DIR1[,PLUGINS_DIR2[,...]]
Plugins directory (defaults to ./_plugins)
--layouts
Layouts directory (defaults to ./_layouts)
-h, --help
Display help documentation
-v, --version
Display version information
Enfield will load any .coffee
or .js
file from the _plugins
directory.
The plugin system is modeled after Jekyll Plugins.
The following plugin types are supported:
Custom converters can be added. Note that only items with YAML frontmatter will be converted. All others are ignored.
module.exports = {
"converters": {
"foo": {
"priority": 1,
"matches": function(ext) {
return ext === ".foo";
},
"outputExtension": function(ext) {
return ".html";
},
"convert": function(content, config, callback) {
// Return converted value via callback(err, content)
callback(null, content.replace("foo", ""));
}
}
}
}
Valid priority values: 1 (lowest) - 5 (highest)
Custom Liquid Filters can be added:
module.exports = {
"filters": {
"upcase": function(val) {
return val.toUpperCase();
},
"lowercase": function(val) {
return val.toLowerCase();
}
}
}
module.exports = {
"tags": {
"mytag": function(body, page, site) {
// Body is the content string within the tag
// Page is the object of the current page being converted
// Site is the same data structure passed to liquid templates
// (see generators below)
return "Hello World";
}
}
}
Generators are used to create additional content for your site based on custom logic.
module.exports = {
"generators": {
"bar": function(site, callback) {
// Same data structure as passed to Liquid templates. Including:
// - site.posts
// - site.pages
// - site.tags
// - site.categories
// - site.static_files
// Make sure to callback when you're done
callback(null);
}
}
}
See src/plugins/enfield-generators.coffee
for examples.
MIT
Richard Enfield is a minor character in The Strange Case of Dr. Jekyll and Mr. Hyde.