From 162b406ea28aa5bacc34a00745d8780bcbf58753 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Wed, 27 May 2026 14:55:28 -0400 Subject: add better syntax highlighting for code blocks --- docs/dev/concepts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/dev/concepts.md') diff --git a/docs/dev/concepts.md b/docs/dev/concepts.md index 14756160..b1ca9687 100644 --- a/docs/dev/concepts.md +++ b/docs/dev/concepts.md @@ -26,7 +26,7 @@ Some BinaryViews have parent views. The view used for decompilation includes mem When you're interacting with the Binary Ninja [scripting console](../guide/index.md#script-python-console), it's important to realize that every time you run a command, the UI is automatically going to update analysis. You can see this by even running a simple command like: -``` +```python print("test") ``` @@ -238,7 +238,7 @@ Summing up the basic blocks of a function is one way to produce a consistent siz In Binary Ninja, there is no explicit `.size` property of functions. Rather, you can choose to calculate it one of two ways: -``` +```python function_size = current_function.total_bytes # or function_size = current_function.highest_address - current_function.lowest_address -- cgit v1.3.1