summaryrefslogtreecommitdiff
path: root/docs/dev/documentation.md
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2026-05-27 14:55:28 -0400
committerJordan Wiens <github@psifertex.com>2026-05-27 14:55:28 -0400
commit162b406ea28aa5bacc34a00745d8780bcbf58753 (patch)
tree39802866489bd352c54599024e24ee346b44cd35 /docs/dev/documentation.md
parentf2ae12d97604da6136b26c184eb7fe30531b4d5e (diff)
add better syntax highlighting for code blocks
Diffstat (limited to 'docs/dev/documentation.md')
-rw-r--r--docs/dev/documentation.md16
1 files changed, 9 insertions, 7 deletions
diff --git a/docs/dev/documentation.md b/docs/dev/documentation.md
index 74129884..75817f16 100644
--- a/docs/dev/documentation.md
+++ b/docs/dev/documentation.md
@@ -14,13 +14,15 @@ To contribute to the Binary Ninja documentation, first sign the [contribution li
## Building
- git clone https://github.com/Vector35/binaryninja-api/
- cd binaryninja-api
- properdocs build
- echo User documentation available in site/
- cd api-docs
- make html
- echo API documentation available in build/html
+```bash
+git clone https://github.com/Vector35/binaryninja-api/
+cd binaryninja-api
+properdocs build
+echo User documentation available in site/
+cd api-docs
+make html
+echo API documentation available in build/html
+```
## Changing
Changing documentation for the API itself is fairly straightforward. Use [doxygen style comment blocks](https://www.doxygen.nl/manual/docblocks.html) in C++ and C, and [restructured text blocks](https://sphinx-tutorial.readthedocs.io/step-1/) for python for the source. The user documentation is located in the `api/docs/` folder and the API documentation is generated from the config in the `api/api-docs` folder.