Aucune description

Anchit Bajaj b5ae77a06b Add license il y a 11 mois
.github fc35210c02 Add goreleaser il y a 1 an
bookstackclient 5af2729355 create summary.md il y a 2 ans
cli 34b93bf4d8 Disable non-functional args and add instructions il y a 1 an
config 3d57b253fb Bump up version il y a 11 mois
downloader 244fef93c8 Add generation date in README il y a 11 mois
.gitignore fc35210c02 Add goreleaser il y a 1 an
.goreleaser.yaml fc35210c02 Add goreleaser il y a 1 an
LICENSE b5ae77a06b Add license il y a 11 mois
Makefile 5af2729355 create summary.md il y a 2 ans
README.md c4c2b790d9 Generate introduction page as well il y a 11 mois
example.env b0a1a95939 API calls in bookstack client to establish wiki structure il y a 2 ans
go.mod 263501f494 Init il y a 2 ans
go.sum 263501f494 Init il y a 2 ans

README.md

BookStack2Site

CLI tool which generates static sites from Bookstack Wikis.

Usecases:

  • Sometimes you want a BookStack wiki for personal/team use and a public facing high traffic site for everyone else.
  • Offline backup of your wiki which is good looking and easy to navigate.
  • You want a markdown version of your wiki synced to a Git repo.

Screenshots

TODO

Usage

Increase the number of API requests allowed per minute in Bookstack by setting API_REQUESTS_PER_MIN=5000 in your Bookstack config.

One day I'll get time to add the automatically trigger SSG feature. Until then, this generates MdBook format markdown and you have to run the mdbook build command yourself.

If you just want markdown without an HTML site then don't run the mdbook command.

While setting up the first time:

mdboook init ./book-test

and edit the book.toml config to your liking.

Then every time you wanna download/update your wiki:

bookstack2site
    --bookstack-url=${BookStackEndpoint} \
    --token-id=${BookStackAPITokenID} \
    --token-secret=${BookStackAPITokenSecret} \
    --download-location="./book-test/src"

# to preview
cd ./book-test && mdbook serve -n 0.0.0.0

# to build
cd ./book-test && mdbook build

Thanks

  • The BookStack Project
  • MdBook