mirror of https://github.com/MISP/misp-book
- Added possibility to make page-breaks,
this greatly enhances readability and structure of a book… - Added custom css place holder for HTML output too. - Added 2 page breaks: quickstart - Create Event & Intro - Licensepull/112/head
parent
b6e7e90e75
commit
2e0545a0cf
|
@ -27,6 +27,8 @@ and many other contributors especially the ones during the [MISP hackathons](htt
|
||||||
|
|
||||||
We welcome contributions to the MISP book. If you want to contribute, fork the [misp-book](https://github.com/MISP/misp-book) repository and pull a request with your changes. You can also [open issues](https://github.com/MISP/misp-book/issues) if you find any errors or propose changes.
|
We welcome contributions to the MISP book. If you want to contribute, fork the [misp-book](https://github.com/MISP/misp-book) repository and pull a request with your changes. You can also [open issues](https://github.com/MISP/misp-book/issues) if you find any errors or propose changes.
|
||||||
|
|
||||||
|
<div class="pagebreak"></div>
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
The MISP user guide is dual-licensed under [GNU Affero General Public License version 3](http://www.gnu.org/licenses/agpl-3.0.html) and [CC-BY-SA 4.0 international](https://creativecommons.org/licenses/by-sa/4.0/).
|
The MISP user guide is dual-licensed under [GNU Affero General Public License version 3](http://www.gnu.org/licenses/agpl-3.0.html) and [CC-BY-SA 4.0 international](https://creativecommons.org/licenses/by-sa/4.0/).
|
||||||
|
|
|
@ -11,6 +11,13 @@
|
||||||
},
|
},
|
||||||
"twitter": {
|
"twitter": {
|
||||||
"url": "https://www.twitter.com/MISPProject/"
|
"url": "https://www.twitter.com/MISPProject/"
|
||||||
}
|
},
|
||||||
|
"styles": {
|
||||||
|
"website": "styles/website.css",
|
||||||
|
"ebook": "styles/ebook.css",
|
||||||
|
"pdf": "styles/pdf.css",
|
||||||
|
"mobi": "styles/mobi.css",
|
||||||
|
"epub": "styles/epub.css"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,6 +41,8 @@ If you need a password generator use:
|
||||||
|
|
||||||
**All Generator tools are only possibilities without any guarantee!**
|
**All Generator tools are only possibilities without any guarantee!**
|
||||||
|
|
||||||
|
<div class="pagebreak"></div>
|
||||||
|
|
||||||
## Create an Event
|
## Create an Event
|
||||||
|
|
||||||
![Create an Event in MISP](figures/AddEvent.jpg)
|
![Create an Event in MISP](figures/AddEvent.jpg)
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
.pagebreak
|
||||||
|
{
|
||||||
|
page-break-after: always;
|
||||||
|
}
|
||||||
|
|
||||||
|
div
|
||||||
|
{
|
||||||
|
page-break-after: always;
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
.pagebreak
|
||||||
|
{
|
||||||
|
page-break-after: always;
|
||||||
|
}
|
||||||
|
|
||||||
|
div
|
||||||
|
{
|
||||||
|
page-break-after: always;
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
.pagebreak
|
||||||
|
{
|
||||||
|
page-break-after: always;
|
||||||
|
}
|
||||||
|
|
||||||
|
div
|
||||||
|
{
|
||||||
|
page-break-after: always;
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
// Include custom css in GitBook: https://help.gitbook.com/content/how-can-i-include-css.html
|
||||||
|
// styles/website.css: will apply only to the website
|
||||||
|
// styles/pdf.css: will apply only to the PDF
|
||||||
|
// styles/ebook.css: will apply only to ebook formats (PDF, Mobi, ePub)
|
||||||
|
|
||||||
|
// page-break "trick": http://forums.apricitysoftware.com/t/include-pdf-pagebreak-instructions-in-markdown/152
|
||||||
|
|
||||||
|
.pagebreak
|
||||||
|
{
|
||||||
|
page-break-after: always;
|
||||||
|
}
|
||||||
|
|
||||||
|
div
|
||||||
|
{
|
||||||
|
page-break-after: always;
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
// Place holder, in case custom css for the HTML is needed
|
Loading…
Reference in New Issue