Gitbook 新版不再支持pdf和其他静态导出,也不再兼容旧版command line版本,旧版command line不支持右边栏和一些hint和embed语法,需要第三方插件,
先安装brew和npm两个包管理软件
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install nodebrew install npm
再用npm安装gitbook
npm install gitbook -gnpm install gitbook-cli -ggitbook -V #查看版本gitbook和gitbook-cli版本
在book.json
中填入插件名称,then run gitbook install
就可以自动安装依赖的插件。安装新版gitbook的一些替代插件以及一些额外的美化插件。
urlembed取代embed,效果不是很完美,tabs也没有新版gitbook的效果 插件用法
{% urlembed %}https://website.org/stuff/this-is-the-path-name{% endurlembed %}
{% tabs first="First Tab", second="Second Tab", third="Third Tab" %}{% content "first" %}Content for first tab ...{% content "second" %}Content for second tab ...{% content "third" %}Content for third tab ...{% endtabs %}
gitbook init #自动生成SUMMARY.md,但多级目录似乎无法找到,建议略过这一步用手工编辑版本gitbook serve #可在浏览器预览,默认在http://localhost:4000gitbook build #产生html
下载calibre
链接到bin
下
ln -s /Applications/calibre.app/Contents/MacOS/ebook-convert /usr/local/bin
产生pdf gitbook pdf . training_book.pdf