Documentation about documentation#
You found an error or typo ?
For small typos please used the edit button
Then modify the corresponding document and commit changes. Those will appear automatically on the website after it is build.
You found a bigger issue or are missing something important?
Please create an issue on GitHub:
Githubpages and jupyter-book#
This page is currently being hosted via GitHub pages. The html is build using jupyter-book.
pip install -U jupyter-book
This adds search and index functionality. Furthermore, it allows straightforward integration of jupyter notebooks.
The repository is structured as follows:
_toc.yaml defines the table of contents of the book
_config.yaml the configuration.
.github/workflows/deploy.yaml defines the workflow for github-actions to build and deploy the pages.
To integrate new content, add new files and add them to _toc.yaml, push changes to main.
Once you push changes to main branch, github actions will be executed and compile and host the website.
You can try to build locally using jupyter-book from inside the repository:
jupyter-book build ./
open ./_html/index.html to view the locally build website.
Formatting Guide for markdown(MD) files#
Markdown files are text documents which can be used across multiple platforms. When using jupyter-book instructional text can be entered as md files or jupyter notebooks. see also https://jupyterbook.org/en/stable/customize/config.html
<- Title#
<- Subtitle#
<- heading1#
<- heading 2.. You get the idea…#
bold text / cursive / ~~strikedtrough~~ /
Lists#
item1
item2
subitem1
subsubitem1
Code#
python -m "print('Hello World')"
cd here and there
Here comes some code.
using language specific highlighting
import time
time.sleep(int(5))
print(sleep.__dict__)
Warning
You have been warned
:class: dropdown Hidden message
Cross - referencing#
adding image#
math#
How to document code#
Write docstrings !