Files
igl/docs/readme.md
T
2018-05-25 07:52:44 -04:00

42 lines
1.7 KiB
Markdown

# Building the Website
For developers who want to contribute to the website/documentation of libigl.
If you want to preview changes to the libigl website before a commit, you can follow the instructions below.
1. Install mkdocs and the material theme
```bash
pip3 install -U --user mkdocs mkdocs-material
```
2. Preview the website locally (in the root folder of the libigl project):
```bash
python3 -m mkdocs serve
```
3. Build the website to generate the html locally (optional):
```bash
python3 -m mkdocs build
```
4. Deploy the website directly to github (will overwrite the gh-pages branch of the remote repository):
```
python3 -m mkdocs gh-deploy
```
!!! warning
The `gh-deploy` script will overwrite the content of the `gh-pages` in the remote repository. Be sure of what you are doing before pushing new content with this command.
!!! tip
Be careful to not have any `<>` characters in your email in your `.gitconfig`, otherwise the `gh-deploy` script will fail.
!!! tip
Dead links can be checked using the [LinkChecker](https://wummel.github.io/linkchecker/) tool. Run the website locally, then run LinkChecker on it:
```bash
linkchecker http://127.0.0.1:8000
```
!!! note
The reason we are using `python -m mkdocs serve` instead of `mkdocs serve` directly is because we are using local extensions for mkdocs. Those extensions are located in the `scripts/` folder of libigl. Running `mkdocs` as a module adds the current directory to the `PYTHONPATH`, allowing us to load those extensions without installing them on the system or in a virtualenv.
## References
- [MkDocs](http://www.mkdocs.org/)
- [Material Theme](https://squidfunk.github.io/mkdocs-material/)