forked from quarkslab/quokka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
79 lines (74 loc) · 1.88 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
71
72
73
74
75
76
77
78
79
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
- 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
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:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.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:
watch:
- bindings/python/quokka
- mkdocs-simple-hooks:
hooks:
on_post_build: "docs.doxygen:generate_cpp_documentation"