To build the documentation of the Basix C++ library, run the following commands:
cd cpp
doxygen
The documentation will then be built in the folder cpp/html
.
To build the documentation of the Basix Python interface, run the following commands:
cd python
python -m sphinx -W -b html source/ build/html/
The documentation will then be built in the folder python/build/html
.
To build the Basix documentation as it appears at docs.fenicsproject.org/basix/main/, run the following commands:
cd web
python3 make_html.py
The documentation will then be built in the folder web/html/
.