This repository holds a Jupyter Book template for building interactive
cplint books based on SWISH.
The cplint support is enabled with our custom sphinx-prolog
extension.
The built book is hosted on GitHub Pages and is available under
https://cplint-template.simply-logical.space.
This webpage describes the process of building interactive cplint content
with the aforementioned technology stack.
- Pull the book repository
git clone https://github.com/simply-logical/cplint-book-template.git cd cplint-book-template
- Install Jupyter Book with the
sphinx-prolog
extensionpip install -r requirements.txt
- Build the book
jb build .
- Open the html build
or run it as a server
open _build/html/index.html
python -m http.server --directory _build/html open http://localhost:8000