├── .editorconfig ├── .gitignore ├── README.md ├── Readme_zh-cn.md ├── src ├── api │ ├── express.md │ ├── getting-started.md │ ├── migration-v2.md │ └── reference.md ├── index.pug └── language │ ├── attributes.md │ ├── case.md │ ├── code.md │ ├── comments.md │ ├── conditionals.md │ ├── doctype.md │ ├── filters.md │ ├── includes.md │ ├── inheritance.md │ ├── interpolation.md │ ├── iteration.md │ ├── mixins.md │ ├── plain-text.md │ └── tags.md └── strings.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/README.md -------------------------------------------------------------------------------- /Readme_zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/Readme_zh-cn.md -------------------------------------------------------------------------------- /src/api/express.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/api/express.md -------------------------------------------------------------------------------- /src/api/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/api/getting-started.md -------------------------------------------------------------------------------- /src/api/migration-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/api/migration-v2.md -------------------------------------------------------------------------------- /src/api/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/api/reference.md -------------------------------------------------------------------------------- /src/index.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/language/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/attributes.md -------------------------------------------------------------------------------- /src/language/case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/case.md -------------------------------------------------------------------------------- /src/language/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/code.md -------------------------------------------------------------------------------- /src/language/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/comments.md -------------------------------------------------------------------------------- /src/language/conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/conditionals.md -------------------------------------------------------------------------------- /src/language/doctype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/doctype.md -------------------------------------------------------------------------------- /src/language/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/filters.md -------------------------------------------------------------------------------- /src/language/includes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/includes.md -------------------------------------------------------------------------------- /src/language/inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/inheritance.md -------------------------------------------------------------------------------- /src/language/interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/interpolation.md -------------------------------------------------------------------------------- /src/language/iteration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/iteration.md -------------------------------------------------------------------------------- /src/language/mixins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/mixins.md -------------------------------------------------------------------------------- /src/language/plain-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/plain-text.md -------------------------------------------------------------------------------- /src/language/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/src/language/tags.md -------------------------------------------------------------------------------- /strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-zh-cn/HEAD/strings.json --------------------------------------------------------------------------------