| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| docset/ | 22-Oct-2025 | - | 375 | 337 | ||
| examples/ | 22-Oct-2025 | - | 7,771 | 5,637 | ||
| mkdocs/ | 22-Oct-2025 | - | 22,077 | 15,476 | ||
| usages/ | 22-Oct-2025 | - | ||||
| Makefile | D | 22-Oct-2025 | 1.5 KiB | 46 | 25 | |
| README.md | D | 22-Oct-2025 | 796 | 21 | 15 | |
| avatars.png | D | 22-Oct-2025 | 1.6 MiB | |||
| json.gif | D | 22-Oct-2025 | 1.6 MiB |
README.md
1# Documentation 2 3## Generate documentation 4 5Note on documentation: The source files contain links to the online documentation at https://json.nlohmann.me. This URL 6contains the most recent documentation and should also be applicable to previous versions; documentation for deprecated 7functions is not removed, but marked deprecated. 8 9If you want to see the documentation for a specific tag or commit hash, you can generate it as follows (here for tag 10`v3.10.2`): 11 12```shell 13git clone https://github.com/nlohmann/json.git 14cd json 15git checkout v3.10.2 16make install_venv serve -C docs/mkdocs 17``` 18 19Open URL <http://127.0.0.1:8000/> in your browser. Replace from any URL from the source code `https://json.nlohmann.me` 20with `http://127.0.0.1:8000` to see the documentation for your tag or commit hash. 21