├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md ├── books └── gitbook_demo │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── README_current.json │ ├── book.json │ ├── book_current.json │ ├── node_modules │ └── src │ ├── README.md │ ├── SUMMARY.md │ ├── appendix │ ├── README.md │ └── reference.md │ ├── assets │ ├── favicon.ico │ └── img │ │ └── crifan_github_home.png │ ├── chapter_1 │ └── README.md │ ├── chapter_2 │ ├── README.md │ ├── ch2_section_1.md │ └── ch2_section_2.md │ └── chapter_3 │ ├── README.md │ ├── ch3_code_highlight.md │ ├── ch3_hint_callout.md │ └── ch3_structure_list.md ├── common ├── backup │ └── node_modules_selfMac.zip ├── batchProcess │ ├── Makefile │ └── batch_process_ignore_books.txt ├── config │ ├── common │ │ ├── common_book.json │ │ └── common_gitignore │ ├── deploy │ │ ├── deploy_ignore_book_list.txt │ │ └── deploy_server_info.mk │ └── template │ │ └── template_README.md ├── gitbook_makefile.mk └── tools │ ├── generate_book_json.py │ ├── generate_md_from_summary.py │ ├── generate_readme_md.py │ ├── sync_ReadmeCurrent_to_bookCurrent.py │ └── update_crifan_github_io_readme.py └── img ├── gitbook_debug_localhost.png ├── gitbook_generated_all_files_to_ouput_folder.png ├── gitbook_installed_plugin_node_modules.png └── gitbook_various_hint_callout_effect.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "powermode.enabled": false, 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/README.md -------------------------------------------------------------------------------- /books/gitbook_demo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | output/ 3 | debug/ 4 | 5 | *.zip 6 | 7 | .DS_Store 8 | -------------------------------------------------------------------------------- /books/gitbook_demo/Makefile: -------------------------------------------------------------------------------- 1 | include ../../common/gitbook_makefile.mk -------------------------------------------------------------------------------- /books/gitbook_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/README.md -------------------------------------------------------------------------------- /books/gitbook_demo/README_current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/README_current.json -------------------------------------------------------------------------------- /books/gitbook_demo/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/book.json -------------------------------------------------------------------------------- /books/gitbook_demo/book_current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/book_current.json -------------------------------------------------------------------------------- /books/gitbook_demo/node_modules: -------------------------------------------------------------------------------- 1 | ../../generated/gitbook/node_modules -------------------------------------------------------------------------------- /books/gitbook_demo/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/README.md -------------------------------------------------------------------------------- /books/gitbook_demo/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/SUMMARY.md -------------------------------------------------------------------------------- /books/gitbook_demo/src/appendix/README.md: -------------------------------------------------------------------------------- 1 | # 附录 2 | 3 | 下面列出相关参考资料。 4 | -------------------------------------------------------------------------------- /books/gitbook_demo/src/appendix/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/appendix/reference.md -------------------------------------------------------------------------------- /books/gitbook_demo/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/assets/favicon.ico -------------------------------------------------------------------------------- /books/gitbook_demo/src/assets/img/crifan_github_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/assets/img/crifan_github_home.png -------------------------------------------------------------------------------- /books/gitbook_demo/src/chapter_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/chapter_1/README.md -------------------------------------------------------------------------------- /books/gitbook_demo/src/chapter_2/README.md: -------------------------------------------------------------------------------- 1 | # 第二章标题 2 | 3 | 下面用于演示效果,会把子章节放到单独的`md`文件中。 -------------------------------------------------------------------------------- /books/gitbook_demo/src/chapter_2/ch2_section_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/chapter_2/ch2_section_1.md -------------------------------------------------------------------------------- /books/gitbook_demo/src/chapter_2/ch2_section_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/chapter_2/ch2_section_2.md -------------------------------------------------------------------------------- /books/gitbook_demo/src/chapter_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/chapter_3/README.md -------------------------------------------------------------------------------- /books/gitbook_demo/src/chapter_3/ch3_code_highlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/chapter_3/ch3_code_highlight.md -------------------------------------------------------------------------------- /books/gitbook_demo/src/chapter_3/ch3_hint_callout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/chapter_3/ch3_hint_callout.md -------------------------------------------------------------------------------- /books/gitbook_demo/src/chapter_3/ch3_structure_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/books/gitbook_demo/src/chapter_3/ch3_structure_list.md -------------------------------------------------------------------------------- /common/backup/node_modules_selfMac.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/backup/node_modules_selfMac.zip -------------------------------------------------------------------------------- /common/batchProcess/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/batchProcess/Makefile -------------------------------------------------------------------------------- /common/batchProcess/batch_process_ignore_books.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/config/common/common_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/config/common/common_book.json -------------------------------------------------------------------------------- /common/config/common/common_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/config/common/common_gitignore -------------------------------------------------------------------------------- /common/config/deploy/deploy_ignore_book_list.txt: -------------------------------------------------------------------------------- 1 | scientific_network_summary -------------------------------------------------------------------------------- /common/config/deploy/deploy_server_info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/config/deploy/deploy_server_info.mk -------------------------------------------------------------------------------- /common/config/template/template_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/config/template/template_README.md -------------------------------------------------------------------------------- /common/gitbook_makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/gitbook_makefile.mk -------------------------------------------------------------------------------- /common/tools/generate_book_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/tools/generate_book_json.py -------------------------------------------------------------------------------- /common/tools/generate_md_from_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/tools/generate_md_from_summary.py -------------------------------------------------------------------------------- /common/tools/generate_readme_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/tools/generate_readme_md.py -------------------------------------------------------------------------------- /common/tools/sync_ReadmeCurrent_to_bookCurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/tools/sync_ReadmeCurrent_to_bookCurrent.py -------------------------------------------------------------------------------- /common/tools/update_crifan_github_io_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/common/tools/update_crifan_github_io_readme.py -------------------------------------------------------------------------------- /img/gitbook_debug_localhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/img/gitbook_debug_localhost.png -------------------------------------------------------------------------------- /img/gitbook_generated_all_files_to_ouput_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/img/gitbook_generated_all_files_to_ouput_folder.png -------------------------------------------------------------------------------- /img/gitbook_installed_plugin_node_modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/img/gitbook_installed_plugin_node_modules.png -------------------------------------------------------------------------------- /img/gitbook_various_hint_callout_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crifan/gitbook_template/HEAD/img/gitbook_various_hint_callout_effect.png --------------------------------------------------------------------------------