1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 20:35:26 +01:00
Go to file
Oliver Steele 319d3c4aeb Docker
2017-07-15 17:03:27 -04:00
.github Update docs to point to issues. 2017-07-09 19:20:26 -04:00
cache Mutex the cache 2017-07-13 19:01:44 -04:00
cmd Simplify build watch 2017-07-15 09:44:22 -04:00
collection Read title from frontmatter 2017-07-14 11:30:39 -04:00
config Implement serve --[no-]watch 2017-07-14 18:40:09 -04:00
docs Add robots.txt to sitemap 2017-07-12 09:52:40 -04:00
filters Implement scssify 2017-07-15 10:59:55 -04:00
frontmatter remove page.RenderContext 2017-07-10 13:23:51 -04:00
pages Read title from frontmatter 2017-07-14 11:30:39 -04:00
pipelines Enable blackfriday auto header ids 2017-07-14 12:12:25 -04:00
plugins Move tags, categories -> Page 2017-07-13 12:28:02 -04:00
scripts Fix a race 2017-07-14 10:59:32 -04:00
server Simplify build watch 2017-07-15 09:44:22 -04:00
site Simplify build watch 2017-07-15 09:44:22 -04:00
tags Simplify 2017-07-15 08:59:19 -04:00
templates Use template.SetSourceLocation instead of adding fake whitespace 2017-07-09 11:57:20 -04:00
testdata/example Complete #6 csv and json data files 2017-07-14 15:24:26 -04:00
utils Rename utils/path -> filepath 2017-07-14 11:41:28 -04:00
.appveyor.yml move mingw install from init 2017-07-06 22:15:35 -04:00
.dockerignore Docker 2017-07-15 17:03:27 -04:00
.gitignore Docker 2017-07-15 17:03:27 -04:00
.travis.yml Simplify 2017-07-15 08:59:19 -04:00
CONTRIBUTING.md make install_dev_tools -> setup 2017-07-12 20:01:17 -04:00
Dockerfile Docker 2017-07-15 17:03:27 -04:00
goreleaser.yml goreleaser: add a main; ignore the ignore 2017-07-12 20:46:02 -04:00
LICENSE Create LICENSE 2017-06-11 19:18:10 -04:00
main.go lint 2017-07-14 18:29:39 -04:00
Makefile Disable aligncheck 2017-07-14 21:30:42 -04:00
README.md Docker 2017-07-15 17:03:27 -04:00

Gojekyll

“It is easier to write an incorrect program than understand a correct one.” - Alan Perlis

Gojekyll is a clone of the Jekyll static site generator, written in the Go programming language. It provides build and serve commands, with directory watch and live reload.

Gojekyll is intended as an homage to Jekyll, and as a possible alternative in situations (such as iterative development of sites that don't use unsupported features) where speed is more important than total compatibility.

  Gojekyll Jekyll Hugo
Stable
Fast
(~20×Jekyll)
Template language Liquid Liquid Go templates
Jekyll compatibility partial
Plugins some yes ?
Runs on Windows
Implementation language Go Ruby Go

Usage

gojekyll build       # builds the site in the current directory into _site
gojekyll serve       # serve the app at http://localhost:4000; reload on changes
gojekyll help
gojekyll help build

Installation

Pre-requisites:

  1. Install go (1) via Homebrew: brew install go; or (2) download.
  2. [Optional] To use the {% highlight %} tag, you also need Pygments: pip install Pygments.

First-time install:

go get github.com/osteele/gojekyll

[Later] Update to the latest version:

go get -u github.com/osteele/liquid github.com/osteele/gojekyll

[Optional] Install command-line autocompletion:

# Bash:
eval "$(gojekyll --completion-script-bash)"
# Zsh:
eval "$(gojekyll --completion-script-zsh)"

Status

This project is at an early stage of development.

It works on the GitHub Pages sites that I care about, and it looks credible on a spot-check of other Jekyll sites.

Current Limitations

Missing features:

  • Themes
  • Pagination
  • Math
  • Plugin system. (Some plugins are emulated.)
  • Liquid filter sassify
  • Markdown features: attribute lists, markdown=1.
  • site.data is not sorted.
  • Undefined Liquid tags and filters are errors, not warnings.
  • Windows compatibility

Also see the detailed status below.

Other Differences

These will probably not change:

By design:

  • Having the wrong type in a _config.yml is an error.
  • Plugins must be listed in the config file, not a Gemfile.
  • serve generates pages on the fly; it doesn't write to the file system.
  • Files are cached to /tmp/gojekyll-${USER}, not ./.sass-cache
  • Server live reload is always on.
  • serve --watch (the default) reloads the _config.yml and data files too.
  • Jekyll provides an (undocumented) jekyll.version variable to templates. Copying this didn't seem right.

Muzukashii:

  • An extensible plugin mechanism support for plugins that aren't compiled into the executable.

Feature Checklist

  • Content
    • Front Matter
    • Posts
    • Static Files
    • Variables
    • Collections
    • Data Files
    • Assets
      • Coffeescript
      • Sass/SCSS
  • Customization
    • Templates
      • Jekyll filters
        • group_by_exp and scssify
        • everything else
      • Jekyll tags
    • Includes
    • Permalinks
    • Pagination
    • Plugins partial; see here
    • Themes
    • Layouts
  • Server
    • Directory watch
  • Commands
    • build
      • --source, --destination, --drafts, --future, --unpublished, --watch
      • --baseurl, --config, --incremental, --lsi
      • --force-polling, --limit-posts, JEKYLL_ENV=production not planned
    • clean
    • help
    • serve
      • --open-uri, --host, --port, watch (enabled by default)
      • --baseurl, --config, --incremental
      • --detach, --ssl-* not planned
    • doctor, import, new, new-theme not planned
  • Windows

Contributing

Bug reports, test cases, and code contributions are more than welcome.

Attribution

Gojekyll uses these libraries:

Package Author(s) Usage License
github.com/jaschaephraim/lrserver Jascha Ephraim Live Reload MIT License
github.com/dchest/cssmin Dmitry Chestnykh CSS minimization BSD 3-clause "New" or "Revised" License
github.com/kyokomi/emoji kyokomi jemoji plugin emulation MIT License
github.com/osteele/liquid yours truly Liquid processor MIT License
github.com/pkg/browser pkg serve --open-url option BSD 2-clause "Simplified" License
github.com/russross/blackfriday Russ Ross Markdown processing Simplified BSD License
github.com/sass/libsass Listed here C port of the Ruby SASS compiler MIT License
github.com/wellington/go-libsass Drew Wells Go bindings for libsass ???
gopkg.in/alecthomas/kingpin.v2 Alec Thomas command-line arguments MIT License
gopkg.in/yaml.v2 Canonical YAML support Apache License 2.0

In addition, the following pieces of text were taken from Jekyll and its plugins. They are used under the terms of the MIT License.

Source Use Description
jekyll help command gojekyll help text help text
Jekyll template documentation test cases filter examples
jekyll-feed plugin plugin emulation feed.xml template
jekyll-redirect-from plugin plugin emulation redirect page template
jekyll-sitemap plugin plugin emulation sitemap template
jekyll-seo-tag plugin plugin emulation feed template

The gopher image in the testdata directory is from Wikimedia Commons. It is used under the Creative Commons Attribution-Share Alike 3.0 Unported license.

In addition to being totally and obviously inspired by Jekyll and its plugins, Jekyll's solid documentation was indispensible --- especially since I wanted to implement Jekyll as documented, not port its source code. The Jekyll docs were always open in at least one tab during development.

Hugo is the pre-eminent Go static site generator. It isn't Jekyll-compatible (-), but it's highly polished, performant, and productized (+++).

jkl is another Go clone of Jekyll. If I'd found it sooner I might have started this project by forking that one. It's got a better name.

Liquid is a pure Go implementation of Liquid templates, that I finally caved and wrote in order to use in this project.

Jekyll, of course.

License

MIT