-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathmkdocs.yml
More file actions
94 lines (88 loc) · 2.3 KB
/
Copy pathmkdocs.yml
File metadata and controls
94 lines (88 loc) · 2.3 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
site_name: Quokka
site_description: A Fast and Accurate Binary Exporter
repo_url: "https://github.com/quarkslab/quokka"
repo_name: "quarkslab/quokka"
# Since the default branch is main, the default edit URL does not work
edit_uri: edit/main/docs/
theme:
name: material
logo: img/logo.png
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.annotate
nav:
- Home: README.md
- Installation: installation.md
- Usage: usage.md
- Features: features.md
- API Guide:
- Program & Metadata: program.md
- Functions: functions.md
- Basic Blocks & CFG: blocks.md
- Instructions & Operands: instructions.md
- Types: types.md
- Cross-References: xrefs.md
- Decompilation: decompilation.md
- P-code Lifting: pcode.md
- Write Features: write_feature.md
- Tutorials:
- First steps: tutorials/qb-crackme/
- Features extraction: tutorials/features/
- Bionic: tutorials/bionic/
- C++ Reference: reference/cpp/
- Python Reference: reference/python/
- Examples: example.md
- Philosophy: philosophy.md
- Roadmap: roadmap.md
- Developers:
- Contributing: contributing.md
- Tips & Tricks: dev.md
- FAQ: FAQ.md
extra_css:
- css/extra.css
markdown_extensions:
- admonition
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.superfences
- pymdownx.highlight
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- tables
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- footnotes
plugins:
- autorefs
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav
- git-revision-date-localized:
enable_creation_date: true
type: date
fallback_to_build_date: true
- mkdocstrings:
handlers:
python:
paths:
- bindings/python
- mkdocs-simple-hooks:
hooks:
on_post_build: "docs.doxygen:generate_cpp_documentation"