From abaf4af46545ba2205cdc06e5ec0ad4d5be7913d Mon Sep 17 00:00:00 2001 From: harttle Date: Tue, 29 Jun 2021 22:21:09 +0800 Subject: [PATCH] docs: update description of LiquidJS --- README.md | 2 +- docs/_config.yml | 2 +- docs/source/index.pug | 2 +- docs/source/tutorials/intro-to-liquid.md | 2 +- docs/source/zh-cn/index.pug | 2 +- package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 50194dbee..cf3848945 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#commits) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/harttle/liquidjs) -A simple, expressive, safe and [Shopify][shopify/liquid] compatible template engine in pure JavaScript. +A simple, expressive and safe [Shopify][shopify/liquid] / Github Pages compatible template engine in pure JavaScript. **The purpose of this repo** is to provide a standard Liquid implementation for the JavaScript community so that [Jekyll sites](https://jekyllrb.com), [Github Pages](https://pages.github.com/) and [Shopify templates](https://themes.shopify.com/) can be ported to Node.js without pain. * [Documentation][doc] diff --git a/docs/_config.yml b/docs/_config.yml index d95e3f642..56f2b00cb 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,6 +1,6 @@ title: LiquidJS subtitle: "A simple, expressive and safe template engine." -description: "LiquidJS is a simple, expressive and safe template engine." +description: "LiquidJS is a simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript." author: Harttle language: en timezone: UTC diff --git a/docs/source/index.pug b/docs/source/index.pug index 0f444f7ed..776669900 100644 --- a/docs/source/index.pug +++ b/docs/source/index.pug @@ -1,5 +1,5 @@ layout: index -description: LiquidJS is a simple, expressive and safe template engine. +description: LiquidJS is a simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript. subtitle: A simple, expressive and safe template engine. --- ul#intro-feature-list diff --git a/docs/source/tutorials/intro-to-liquid.md b/docs/source/tutorials/intro-to-liquid.md index 8e83cccb9..3d52aef63 100644 --- a/docs/source/tutorials/intro-to-liquid.md +++ b/docs/source/tutorials/intro-to-liquid.md @@ -2,7 +2,7 @@ title: Introduction to Liquid Template Language --- -LiquidJS is a simple, expressive, safe and shopify compatible template engine in pure JavaScript. The purpose of this repo is to provide a standard Liquid implementation for the JavaScript community. Liquid is originally implemented in Ruby and used by Github Pages, Jekyll and Shopify, see [Differences with Shopify/liquid][diff]. +LiquidJS is a simple, expressive and safe [Shopify][shopify/liquid] / Github Pages compatible template engine in pure JavaScript. The purpose of this repo is to provide a standard Liquid implementation for the JavaScript community. Liquid is originally implemented in Ruby and used by Github Pages, Jekyll and Shopify, see [Differences with Shopify/liquid][diff]. LiquidJS syntax is relatively simple. There're 2 types of markups in LiquidJS: diff --git a/docs/source/zh-cn/index.pug b/docs/source/zh-cn/index.pug index 2a22e4ff5..5a5e74b50 100644 --- a/docs/source/zh-cn/index.pug +++ b/docs/source/zh-cn/index.pug @@ -1,5 +1,5 @@ layout: index -description: LiquidJS is a simple, expressive and safe template engine. +description: LiquidJS 是一个纯 JavaScript 实现的,简洁的、安全的模板引擎,兼容 Shopify / Github Pages。 subtitle: 简单安全的 Liquid 模板引擎 --- ul#intro-feature-list diff --git a/package.json b/package.json index 413f64ced..02bc2995f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "liquidjs", "version": "9.25.1", - "description": "A simple, expressive, safe and Shopify compatible template engine in pure JavaScript.", + "description": "A simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript.", "main": "dist/liquid.node.cjs.js", "module": "dist/liquid.node.esm.js", "es2015": "dist/liquid.browser.esm.js",