forked from Vector35/binaryninja-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
57 lines (52 loc) · 1.83 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
site_name: 'Binary Ninja User Documentation'
site_url: 'https://docs.binary.ninja/'
repo_url: 'https://binary.ninja/'
repo_name: 'github'
site_description: 'Documentation for the Binary Ninja reverse engineering platform'
site_author: 'Vector 35 Inc'
google_analytics: ['UA-72420552-3', 'docs.binary.ninja' ]
use_directory_urls: False
extra_css: ['docs.css', 'github.min.css', 'juxtapose.min.css']
extra_javascript: ['highlight.min.js', 'cpp.min.js', 'python.min.js', 'juxtapose.min.js']
theme:
name: readthedocs
favicon: 'img/favicon.ico'
highlightjs: false
shortcuts:
help: 191 # ?
next: 78 # n
previous: 80 # p
search: 191 # ? / /
copyright: '(<a href="https://creativecommons.org/licenses/by/3.0/">cc</a>) <a href="https://vector35.com/">Vector 35 Inc</a>'
plugins:
- search
markdown_extensions:
- codehilite
- admonition
- toc:
permalink: True
nav:
- Home: 'index.md'
- Getting Started Guide: 'getting-started.md'
- User Guide:
- Plugins: 'guide/plugins.md'
- Types: 'guide/type.md'
- Debugger (Beta): 'guide/debugger.md'
- Objective-C (Beta): 'guide/objectivec.md'
- Troubleshooting: 'guide/troubleshooting.md'
- Developer Guide:
- API: 'dev/api.md'
- Python Plugins: 'dev/plugins.md'
- Batch / Headless Automation: 'dev/batch.md'
- BNIL Guide: Overview: 'dev/bnil-overview.md'
- BNIL Guide: LLIL: 'dev/bnil-llil.md'
- BNIL Guide: MLIL: 'dev/bnil-mlil.md'
- Flag Guide: 'dev/flags.md'
- Creating Themes: 'dev/themes.md'
- Contributing Documentation: 'dev/documentation.md'
- About:
- License: 'about/license.md'
- Open Source: 'about/open-source.md'
extra:
disablesearch: True
logo: 'images/logo.png'