其他分享
首页 > 其他分享> > gitbook write a book, the basic knowledge you should know

gitbook write a book, the basic knowledge you should know

作者:互联网

Gitbook is tool to write a book, which support the simple language markdown.

We can write it offline.

npm install gitbook-cli -g
mkdir book1
cd book1
gitbook init
gitbook build
gitbook serve

When you update the summary, you can add the md file in the folder and modify the corresponding summary file. Then, you can update the file.

off course you can generate other format:

gitbook pdf ./ ./mybook.pdf
gitbook epub ./ ./mybook.epub
gitbook mobi ./ ./mybook.mobi

Before the command, you need to install the calibre software, and put the calibre as the user path. Ohterwise, you will get a ebook-convert error.

EbookError: Error during ebook generation: 'ebook-convert' is not recognized as an internal or external command, operable program or batch file.

2022-01-03_102948.png

Reference:

标签:gitbook,mybook,knowledge,ebook,should,write,book,file,summary
来源: https://www.cnblogs.com/studydo/p/15759094.html