1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-30 10:48:59 +01:00

README links to godoc

This commit is contained in:
Oliver Steele 2017-06-28 09:45:20 -04:00
parent dbdcca4319
commit a4b1835d2c
2 changed files with 18 additions and 7 deletions

View File

@ -1,6 +1,7 @@
# Go Liquid Template Parser # Go Liquid Template Parser
[![GoDoc](https://godoc.org/github.com/osteele/liquid?status.svg)](http://godoc.org/github.com/osteele/liquid)
`goliquid` is a very early-stage Go implementation of the [Shopify Liquid template language](https://shopify.github.io/liquid), for use in [Gojekyll](https://github.com/osteele/gojekyll). `goliquid` is a pure Go implementation of [Shopify Liquid templates](https://shopify.github.io/liquid), for use in [gojekyll](https://github.com/osteele/gojekyll).
## Status ## Status
[![Build Status](https://travis-ci.org/osteele/liquid.svg?branch=master)](https://travis-ci.org/osteele/liquid) [![Build Status](https://travis-ci.org/osteele/liquid.svg?branch=master)](https://travis-ci.org/osteele/liquid)
@ -10,7 +11,7 @@
- [x] Literals - [x] Literals
- [ ] String Escapes - [ ] String Escapes
- [x] Variables - [x] Variables
- [ ] Operators - [ ] Operators (partial)
- [x] Arrays - [x] Arrays
- [ ] Whitespace Control - [ ] Whitespace Control
- [ ] Tags - [ ] Tags
@ -30,12 +31,10 @@
- [ ] `tablerow` - [ ] `tablerow`
- [ ] `cycle` - [ ] `cycle`
- [x] Raw - [x] Raw
- [ ] Variable - [ ] Variables
- [x] Assign - [x] Assign
- [ ] Capture - [ ] Capture
- [ ] Filters - [ ] Filters (partial)
- [x] some
- [ ] all
## Install ## Install
@ -84,6 +83,16 @@ The [original Liquid engine](https://shopify.github.io/liquid), of course, for t
(That said, this is a clean-room implementation to make sure it just implements the documented design.) (That said, this is a clean-room implementation to make sure it just implements the documented design.)
## Other Implementations
Go:
* <https://godoc.org/github.com/karlseguin/liquid> is a partial implementation.
* <https://godoc.org/github.com/acstech/liquid> is a more active fork of Karl Seguin's implementation.
* <https://godoc.org/github.com/hownowstephen/go-liquid> is a more recent entry.
<https://github.com/Shopify/liquid/wiki/Ports-of-Liquid-to-other-environments> lists ports to other languages.
## License ## License
MIT License MIT License

View File

@ -1,7 +1,9 @@
/* /*
Package liquid is a very early-stage pure Go library that implements Shopify Liquid <https://shopify.github.io/liquid> templates. Package liquid is a pure Go implementation of Shopify Liquid templates.
It's intended for use in for use in https://github.com/osteele/gojekyll. It's intended for use in for use in https://github.com/osteele/gojekyll.
See the project README https://github.com/osteele/liquid for additional information and implementation status.
*/ */
package liquid package liquid