其他分享
首页 > 其他分享> > GitBook简明教程

GitBook简明教程

作者:互联网

安装

npm install gitbook -g

使用

  1. 新建文件夹,建议用书名。如:把时间当作朋友
  2. 在目录下新建README.mdSUMMARY.md.

README.md是书籍的简单介绍,如:

This is a book powered by [GitBook](https://github.com/GitbookIO/gitbook).

SUMMARY.md是书籍的目录结构,如:

* [Chapter1](chapter1/README.md)
  * [Section1.1](chapter1/section1.1.md)
  * [Section1.2](chapter1/section1.2.md)
* [Chapter2](chapter2/README.md)
  * [Section2.1](chapter2/section2.1.md)
  * [Section2.2](chapter2/section2.2.md)
  1. 初始化书籍: gitbook init
  2. 编译预览: gitbook serve

参考文章

标签:md,教程,gitbook,chapter1,简明,chapter2,GitBook,README
来源: https://blog.csdn.net/qq_28077405/article/details/121038446