summaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2022-10-17 14:27:52 -0400
committerJordan Wiens <jordan@psifertex.com>2022-10-17 14:27:52 -0400
commit6b09d4d92fbf4eec98ae1db42e57ba9d2a94de4c (patch)
tree0f0a3f5866a4da102783836aa2458fb1cf101942 /docs/dev
parent4942700ca3387b64cc6443a80bac60b470588bb9 (diff)
fix images and some user manual links
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/concepts.md2
-rw-r--r--docs/dev/index.md6
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/dev/concepts.md b/docs/dev/concepts.md
index eae79854..fc74e0e1 100644
--- a/docs/dev/concepts.md
+++ b/docs/dev/concepts.md
@@ -6,7 +6,7 @@ ILs in general are critical to how Binary Ninja analyzes binaries and we have mu
APIs that query these mappings are plural. So for example, while `current_hlil.llil` will give a single mapping, `current_hlil.llils` will return a list that may contain multiple mappings.
-![Mapping between ILs ><](/img/ilmapping.png "Mapping between ILs")
+![Mapping between ILs ><](./img/ilmapping.png "Mapping between ILs")
## Operating on IL versus Native
diff --git a/docs/dev/index.md b/docs/dev/index.md
index d379de0d..983655c2 100644
--- a/docs/dev/index.md
+++ b/docs/dev/index.md
@@ -1,6 +1,6 @@
# Using the Binary Ninja API
-Welcome to the Binary Ninja API documentation. Much like the [User Manual](/guide/), some larger sections have been split off into their own sections on the left, while the table of contents for this documentation is on the right.
+Welcome to the Binary Ninja API documentation. Much like the [User Manual](./guide/index.html), some larger sections have been split off into their own sections on the left, while the table of contents for this documentation is on the right.
## Language Specific Bindings
@@ -8,10 +8,10 @@ The Binary Ninja API is available through a [Core API](#core-api), through the [
### Python API
-The most heavily documented of all of the APIs, the Python API serves as a useful documentation for the other APIs. Here's a list of the most important Python API documentation resources:
+The Python API is the most common third-party API and is used in many [public plugins](https://github.com/vector35/community-plugins). Here's a list of the most important Python API documentation resources:
- [Writing Python Plugins](plugins.md)
- - [Python API](https://api.binary.ninja/)
+ - [Python API Reference](https://api.binary.ninja/) (available offline via the Help menu)
- [API Source](https://github.com/Vector35/binaryninja-api/tree/dev/python)
### Core API