Skip to content

nathaneastwood/fablore

Repository files navigation

fablore

This repository contains the source of the fablore book. This is a web book aiming to contain all known official Flesh and Blood lore. The book is built using mdBook.

(back to top)

Building the Book

To build the book for yourself, make sure you have installed mdBook and then:

git clone https://github.com/nathaneastwood/fablore.git
cd fablore
mdbook build

To host your local version you can run

mdbook serve --open

(back to top)

Images

When adding images to the book, be sure to convert them to webp format using the cwebp tool.

for file in path/to/file/*; do cwebp -q 70 $file -o ${file%.*}.webp; done

Note, to install webp on your machine, please consult the downloads page or build instructions.

License

All code in this repository is licensed under MIT, for more information take a look at the LICENSE file. All content in the book is © Legend Story Studios.

(back to top)