1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-26 23:24:38 +01:00
Go to file
Oliver Steele 2e8f51ad06 Rename to match Liquid terminology
Add* Register*
ControlTag / StartTag -> Block
2017-07-02 13:31:34 -04:00
chunks Rename to match Liquid terminology 2017-07-02 13:31:34 -04:00
expressions Coverage 2017-07-02 08:35:06 -04:00
filters Lint 2017-07-01 23:52:23 -04:00
generics Coverage 2017-07-02 08:35:06 -04:00
scripts Coverage 2017-07-02 07:51:24 -04:00
tags Rename to match Liquid terminology 2017-07-02 13:31:34 -04:00
.gitignore Rename to match Liquid terminology 2017-07-02 13:31:34 -04:00
.travis.yml tavis uses makefile lint 2017-07-02 09:09:23 -04:00
context.go New top-level Context wrapper 2017-07-01 23:52:38 -04:00
engine.go Rename to match Liquid terminology 2017-07-02 13:31:34 -04:00
LICENSE Create LICENSE 2017-06-26 15:36:29 -04:00
liquid_test.go Rename to match Liquid terminology 2017-07-02 13:31:34 -04:00
liquid.go Rename to match Liquid terminology 2017-07-02 13:31:34 -04:00
Makefile tavis uses makefile lint 2017-07-02 09:09:23 -04:00
README.md Add coverage status 2017-07-02 08:47:10 -04:00
template.go New top-level Context wrapper 2017-07-01 23:52:38 -04:00
test.html Rename to match Liquid terminology 2017-07-02 13:31:34 -04:00

Go Liquid Template Parser

Build Status Go Report Card GoDoc Coverage Status

“Any sufficiently complicated C or Fortran program contains an ad-hoc, informally-specified, bug-ridden, slow implementation of half of Common Lisp.” Philip Greenspun

liquid ports Shopify Liquid templates to Go. It was developed for use in gojekyll.

liquid provides a functional API for defining tags and filters. See examples here, here, and here. On the one hand, this isn't idiomatic Go. On the other hand, this made it possible to implement a boatload of Liquid and Jekyll filters without an onerous amount of boilerplate in some cases, simply by passing a reference to a function from the standard library.

Status

This library is in its early days. IMO it's not sufficiently mature to be worth snapping off a versioned URL. In particular, the tag and filter extension API is likely to change.

  • Basics
    • Literals
      • String Escapes
    • Variables
    • Operators (partial)
    • Arrays
    • Whitespace Control
  • Tags
    • Comment
    • Control Flow
      • if/else/elsif
      • unless
      • case
        • when
        • else
    • Iteration
      • modifiers (limit, reversed, offset)
      • range
      • break, continue
      • loop variables
      • tablerow
      • cycle
    • Raw
    • Variables
      • Assign
      • Capture
  • Filters
    • sort_natural, uniq, escape, truncatewords, url_decode, url_encode
    • everything else

Install

go get -u github.com/osteele/goliquid

Contribute

Setup

make install-dev-tools

Workflow

go test ./...

Test just the scanner:

cd expressions
ragel -Z scanner.rl && go test

Preview the documentation:

godoc -http=:6060&
open http://localhost:6060/pkg/github.com/osteele/liquid/

Style Guide

make test and make lint should pass.

The cyclomatic complexity checks on generated functions, hand-written parsers, and some of the generic interpreter functions, have been disabled (via nolint: gocyclo). IMO this check isn't appropriate for those classes of functions. This isn't a license to disable cyclomatic complexity or lint in general willy nilly.

Working on the Parser and Lexer

To work on the lexer, install Ragel. On macOS: brew install ragel.

Do this after editing scanner.rl or expressions.y:

go generate ./...

References

Attribution

Package Author Description License
gopkg.in/yaml.v2 Canonical YAML support (for printing parse trees) Apache License 2.0
jeffjen/datefmt Jeffrey Jen Go bindings to GNU strftime and strptime MIT
Ragel Adrian Thurston scanning expressions MIT

Michael Hamrah's Lexing with Ragel and Parsing with Yacc using Go was essential to understanding go yacc.

The original Liquid engine, of course, for the design and documentation of the Liquid template language. Many of the tag and filter test cases are taken directly from the Liquid documentation.

Other Implementations

Go

After trying each of these, and looking at how to extend them, I concluded that I wasn't going to get very far without a parser generator. I also wanted an easy API for writing filters.

Other Languages

See Shopify's ports of Liquid to other environments.

License

MIT License