-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
70 lines (70 loc) · 2.06 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
58
59
60
61
62
63
64
65
66
67
68
69
70
site_name: 'Binary Ninja Sidekick User Documentation'
copyright: '© Copyright 2015-2024, Vector 35 Inc'
theme:
name: material
favicon: 'images/favicon.ico'
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: red
accent: grey
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: red
accent: blue grey
toggle:
icon: material/toggle-switch
name: Switch to light mode
highlightjs: false
shortcuts:
help: 191 # ?
next: 78 # n
previous: 80 # p
search: 191 # ? / /
nav:
- Home: 'index.md'
- 'getting-started.md'
- User's Guide:
- Introduction: guide/guide.md
- Indexes Sidebar:
- Sidekick Version 2.x: guide/indexes.v2.md
- Sidekick Version 1.x: guide/indexes.md
- Code Insight Map View: guide/code_insight_map.md
- "Suggestions Sidebar":
- guide/suggestions.md
- Structure Recovery: guide/structures.md
- guide/variables.md
- Structure and Field Naming: guide/fields.md
- Function Naming: guide/function_naming.md
- Function Descriptions: guide/briefs.md
- Assistant Sidebar: guide/assistant.md
- Analysis Workbench Sidebar: guide/analysis_workbench.md
- LLMOperator Model Catalog Sidebar: guide/llmoperator_model_catalog.md
- Investigations Sidebar: guide/investigations.md
- guide/components.md
- guide/documentation.md
- guide/code_comment.md
- Function Callee Naming: guide/function_callee_naming.md
- "Known Issues":
- SKI-1: issues/ski-1.md
- SKI-2: issues/ski-2.md
- About:
- Sidekick: 'about/about.md'
- Legal Terms and Conditions: 'about/legal-terms-and-conditions.md'
- Open Source: 'about/open-source.md'
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- toc:
permalink: True
extra_css:
- docs.css