diff --git a/README.md b/README.md
index 9ef2eed4e..de33f972e 100644
--- a/README.md
+++ b/README.md
@@ -1,34 +1,35 @@
-# shopify-liquid
+# liquidjs
-[](https://www.npmjs.org/package/shopify-liquid)
-[](https://travis-ci.org/harttle/shopify-liquid)
-[](https://coveralls.io/github/harttle/shopify-liquid?branch=master)
-[](https://github.com/harttle/shopify-liquid/issues)
+[](https://www.npmjs.org/package/liquidjs)
+[](https://travis-ci.org/harttle/liquidjs)
+[](https://coveralls.io/github/harttle/liquidjs?branch=master)
+[](https://github.com/harttle/liquidjs/issues)
-A Liquid template engine with a wide range of tags and filters,
-for both Node.js and browsers.
-Here's a live demo:
+A Liquid engine implementation for both Node.js and browsers, with all [shopify/liquid][shopify/liquid] features.
+Formerly known as shopify-liquid.
+
+Live Demo:
> The Liquid template engine is implemented in Ruby originally,
> which is used by [Jekyll][jekyll] and [Github Pages][gh].
Features:
-* A wide range of [filters](https://github.com/harttle/shopify-liquid/wiki/Builtin-Filters) and [tags](https://github.com/harttle/shopify-liquid/wiki/Builtin-Tags)
+* A wide range of [filters](https://github.com/harttle/liquidjs/wiki/Builtin-Filters) and [tags](https://github.com/harttle/liquidjs/wiki/Builtin-Tags)
* Easy tag/filter registration, allows async tags
* [any-promise][any-promise]
API Reference:
-* Builtin Tags:
-* Builtin Filters:
-* Operators:
-* Whitespace Control:
+* Builtin Tags:
+* Builtin Filters:
+* Operators:
+* Whitespace Control:
Installation:
```bash
-npm install --save shopify-liquid
+npm install --save liquidjs
```
## Render from String
@@ -36,7 +37,7 @@ npm install --save shopify-liquid
Parse and Render:
```javascript
-var Liquid = require('shopify-liquid');
+var Liquid = require('liquidjs');
var engine = Liquid();
engine.parseAndRender('{{name | capitalize}}', {name: 'alice'})
@@ -126,11 +127,11 @@ And `window.Liquid` is what you want. There's also a [demo](demo/browser/).
var engine = window.Liquid();
var src = '{{ name | capitalize}}';
var ctx = {
- name: 'welcome to Shopify Liquid'
+ name: 'welcome to liquidjs'
};
engine.parseAndRender(src, ctx)
.then(function(html) {
- // html === Welcome to Shopify Liquid
+ // html === Welcome to liquidjs
});