From 419ba0f3357f56881bc13c3a83bb3959e1a5ad1b Mon Sep 17 00:00:00 2001 From: Yang Jun Date: Tue, 23 Jun 2026 14:56:32 +0800 Subject: [PATCH] docs: sync intro sentence across package and site metadata Align package.json, docs config, manifest, llms.txt, and AGENTS.md tagline to the README canonical description. Co-authored-by: Cursor --- AGENTS.md | 2 +- docs/_config.yml | 4 ++-- docs/source/index.pug | 4 ++-- docs/source/llms.txt | 2 +- docs/source/manifest.json | 2 +- docs/source/tutorials/intro-to-liquid.md | 2 +- package.json | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 5667f9002..7359ce9f3 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,6 +1,6 @@ # LiquidJS -Shopify / GitHub Pages compatible Liquid template engine. TypeScript in `src/`, bundles in `dist/`. Docs site in `docs/` (Hexo, `navy` theme). +A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support. TypeScript in `src/`, bundles in `dist/`. Docs site in `docs/` (Hexo, `navy` theme). ## Layout diff --git a/docs/_config.yml b/docs/_config.yml index b2055096c..5557c745b 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,6 +1,6 @@ title: LiquidJS -subtitle: "A simple, expressive, and safe template engine for JavaScript." -description: "LiquidJS is a simple, expressive, and safe template engine for JavaScript, compatible with Shopify and GitHub Pages." +subtitle: "A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support." +description: "A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support." author: Harttle language: en timezone: UTC diff --git a/docs/source/index.pug b/docs/source/index.pug index 64048edf7..8b1d1aad6 100644 --- a/docs/source/index.pug +++ b/docs/source/index.pug @@ -1,6 +1,6 @@ layout: index -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. +description: A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support. +subtitle: A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support. --- ul#intro-feature-list li.intro-feature-wrap diff --git a/docs/source/llms.txt b/docs/source/llms.txt index 621cdf4d1..a2235a149 100644 --- a/docs/source/llms.txt +++ b/docs/source/llms.txt @@ -1,6 +1,6 @@ # LiquidJS -> A simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript. +> A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support. ## Tutorials diff --git a/docs/source/manifest.json b/docs/source/manifest.json index 7bc095124..e2e94a677 100644 --- a/docs/source/manifest.json +++ b/docs/source/manifest.json @@ -1,7 +1,7 @@ { "short_name": "LiquidJS", "name": "LiquidJS", - "description": "A simple, expressive and safe Shopify / GitHub Pages compatible template engine in pure JavaScript.", + "description": "A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support.", "icons": [ { "src": "/icon/apple-touch-icon-57x57.png", diff --git a/docs/source/tutorials/intro-to-liquid.md b/docs/source/tutorials/intro-to-liquid.md index 85b4d7d9a..3040623e1 100644 --- a/docs/source/tutorials/intro-to-liquid.md +++ b/docs/source/tutorials/intro-to-liquid.md @@ -3,7 +3,7 @@ title: The Liquid Template Language describe: A short introduction to the Liquid template language and some simple demos. --- -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 is a simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support. 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 are 2 types of markups in LiquidJS: diff --git a/package.json b/package.json index e2824f041..97220efd4 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "liquidjs", "version": "10.27.0", "sideEffects": false, - "description": "A simple, expressive, extensible and safe Liquid template engine in pure JavaScript — Shopify and Github Pages compatible.", + "description": "A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support.", "main": "dist/liquid.node.js", "module": "dist/liquid.node.mjs", "es2015": "dist/liquid.browser.mjs",