https://github.com/repronim/howwouldrepronim
Sphinx for rendering the "How Would ReproNim Do That?" series of documents
https://github.com/repronim/howwouldrepronim
Last synced: 10 months ago
JSON representation
Sphinx for rendering the "How Would ReproNim Do That?" series of documents
- Host: GitHub
- URL: https://github.com/repronim/howwouldrepronim
- Owner: ReproNim
- License: mit
- Created: 2020-06-11T22:05:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-05T18:21:08.000Z (over 5 years ago)
- Last Synced: 2025-06-20T02:44:54.166Z (12 months ago)
- Language: Python
- Homepage:
- Size: 5.68 MB
- Stars: 9
- Watchers: 5
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HowWouldReproNim
Sphinx rendering of the "How Would ReproNim Do That?" series.
## Building
Build the documentation:
# create a venv to not mess with anything else
virtualenv --python=python3.7 ~/env/repro
. ~/env/repro
# install from requirements.txt
pip install -r requirements.txt
# build the docs
make html
# view in browser
firefox _build/html/index.html
# build the PDF (this probably requires a lot of LaTeX stuff being installed,
# so no guarantee that it works out of the box ;-)
make latexpdf