-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
116 lines (102 loc) · 2.74 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Project information
site_name: LLQL
site_url: https://amrdeveloper.github.io/llql
site_description: A SQL Like query language to perform queries on LLVM IR/BC files.
site_author: AmrDeveloper
# Repository
repo_name: Amrdeveloper/LLQL
repo_url: https://github.com/amrdeveloper/LLQL
# Copyright
copyright: Copyright © 2025 Amr Hesham
# Configuration
theme:
name: material
logo: assets/llql_logo.svg
favicon: assets/llql_logo.svg
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
font:
code: JetBrains Mono
palette:
- scheme: default
primary: white
accent: light blue
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- scheme: slate
primary: black
accent: light blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
features:
# Content features
- content.code.annotate
- content.code.copy
- content.code.select
- content.action.edit
- content.tooltips
# Navigation features
- content.code.annotate
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tracking
- navigation.expand
- navigation.instant.progress
# Search features
- search.suggest
- search.highlight
- search.share
plugins:
- optimize
- offline
- search
# Extensions
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
# Page tree
nav:
- Home: index.md
- Tables: tables.md
- Matchers:
- General: matchers/general.md
- Constants: matchers/constants.md
- Binary: matchers/binary.md
- Arithmetics: matchers/arithmetics.md
- ICmp: matchers/icmp.md
- FCmp: matchers/fcmp.md
- Logical & Bitwise: matchers/logical_and_bitwise.md
- Exceptions: matchers/exceptions.md
- Call: matchers/call.md
- Cast: matchers/cast.md
- Combine: matchers/combine.md
- Types: matchers/types.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/amrdeveloper
name: AmrDeveloper on Github
- icon: fontawesome/brands/twitter
link: https://twitter.com/AmrDeveloper
name: AmrDeveloper on Twitter
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/amrdeveloper
name: AmrDeveloper on Linkedin
- icon: fontawesome/brands/medium
link: https://amrdeveloper.medium.com
name: AmrDeveloper on Medium