Generates gitbook chapters and sections from a given markdown file.
npm install -g gitbookify
gitbookify <file.md> --outdir <outdir> <gitbookify options>
Generates gitbook chapters and sections from a given markdown file.
OPTIONS:
-o, --outdir the directory to which to write the generated files used to generate a gitbook
-l, --loglevel level at which to log: silly|verbose|info|warn|error|silent -- default: info
-h, --help Print this help message.
EXAMPLES:
Generate with default options and launch gitbook server afterwards:
gitbookify README.md --outdir ./my-gitbook && gitbook serve ./my-gitbook
Override loglevel:
gitbookify API.md --loglevel silly -o ./my-gitbook
Sections are created by separating on each #
header. If headers have the same name they go into the same chapter. For
more info review this example.
After generating the chapters you can use gitbook to either serve them gitbook serve ./my-gitbook
or do all the other gitbook things.
Simply enclose your speaker notes in a notes
comment as shown below. The notes will be printed to the browser console
when you open the particular page in the gitbook.
<!-- notes
- first speaker note
- indented sub note
-->
There are two ways to add images to your gitbook.
That is easy since they take absolute paths like https://path.to/img.png
and work at all times.
Disadvantage: You have to be online when presenting/reading the book and as we all know good network is not a given at conferences
You can also link to a directory relative to the markdown file you create, i.e. img/my-image.png
.
The problem is that the resulting pages of the book are placed somewhere else and cannot find that img
directory. In
order to fix that use this simple function in order to create softlinks from each book page to the main img
directory.
link_img() {
for D in *; do
if [ -d "${D}" ]; then
ln -s ../../img $D/img
fi
done
}
You can then use it in your script that builds the book:
rm -rf ./gitbook
gitbookify slides.md -o gitbook && \
rm -rf ./book && \
gitbook build ./gitbook -o ./book && \
cd ./book && \
link_img
here is a full example of such script.
MIT