mirror of https://github.com/MISP/misp-book
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
parent
e6db489732
commit
241a2e0993
|
@ -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": {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue