chg: [shell] Added vague indicators where we are at in the build process.

new: [plugin] Added last-modified plugin and explicitly the search plugin (for debugging)
pull/137/head
Steve Clement 2018-11-27 18:04:26 +09:00
parent e6db489732
commit 241a2e0993
2 changed files with 6 additions and 1 deletions

View File

@ -3,7 +3,7 @@
"description": "User guide of MISP Malware Information Sharing Platform, a Threat Sharing Platform.",
"language": "en",
"author": "MISP Contributors",
"plugins": ["autocover", "github", "toc", "anchors", "alerts", "advanced-emoji", "image-class"],
"plugins": ["autocover", "github", "toc", "anchors", "alerts", "advanced-emoji", "image-class", "last-modified", "search"],
"links": { "sidebar": { "MISP @ GitHub": "https://github.com/MISP/MISP", "PDF Format": "https://www.circl.lu/doc/misp/book.pdf" }},
"pluginsConfig": {
"github": {

View File

@ -1,8 +1,13 @@
#!/bin/bash
echo "1/4 html"
gitbook build
echo "2/4 pdf"
gitbook pdf
echo "3/4 epub"
gitbook epub
echo "4/4 mobi"
gitbook mobi
echo "Done"
mv book.pdf _book
mv book.epub _book
mv book.mobi _book