├── .gitignore ├── .DS_Store ├── hello-world ├── page-2.md ├── README.md └── page-1.md ├── .gitbook └── assets │ └── banner1.png ├── README.md ├── SUMMARY.md └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | /_book/ 2 | /dist/ 3 | /node-modules/ -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFmiss/test-gitbook/master/.DS_Store -------------------------------------------------------------------------------- /hello-world/page-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | coverY: 0 3 | --- 4 | 5 | # 😅 Page 2 6 | 7 | -------------------------------------------------------------------------------- /hello-world/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | description: 'Page:' 3 | --- 4 | 5 | # 🍐 Hello world 6 | 7 | -------------------------------------------------------------------------------- /.gitbook/assets/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IFmiss/test-gitbook/master/.gitbook/assets/banner1.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | --- 2 | description: this is new page 3 | cover: .gitbook/assets/banner1.png 4 | coverY: 0 5 | --- 6 | 7 | # 🚀 Get Start 8 | 9 | -------------------------------------------------------------------------------- /hello-world/page-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | description: content ... 3 | --- 4 | 5 | # 🍋 Page 1 6 | 7 |
8 | -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | 3 | - [🚀 Get Start](README.md) 4 | - [🍐 Hello world](hello-world/README.md) 5 | - [😅 Page 2](hello-world/page-2.md) 6 | - [🍋 Page 1](hello-world/page-1.md) 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test-gitbook", 3 | "version": "1.0.0", 4 | "description": "--- description: this is new page ---", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "build": "gitbook build" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/IFmiss/test-gitbook.git" 13 | }, 14 | "author": "", 15 | "license": "ISC", 16 | "bugs": { 17 | "url": "https://github.com/IFmiss/test-gitbook/issues" 18 | }, 19 | "homepage": "https://github.com/IFmiss/test-gitbook#readme" 20 | } 21 | --------------------------------------------------------------------------------