-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
223 lines (191 loc) · 5.8 KB
/
Copy pathmkdocs.yml
File metadata and controls
223 lines (191 loc) · 5.8 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
site_name: OpenComplai
site_url: https://docs.opencomplai.com/
site_description: Complete technical documentation for OpenComplai - Open source document analysis and processing platform
repo_url: https://github.com/Opencomplai/opencomplai
repo_name: opencomplai
edit_uri: edit/main/docs/src/
docs_dir: docs/src
site_dir: site
# Theme configuration
theme:
name: material
custom_dir: docs/theme/overrides
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Dark mode
primary: custom
accent: custom
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Light mode
primary: custom
accent: custom
font:
text: Inter
code: Roboto Mono
features:
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.top
- navigation.expand
- search.suggest
- search.highlight
- search.share
- toc.follow
- content.code.copy
- content.code.select
- content.tabs.link
- header.autohide
# Plugins
plugins:
- search:
lang: en
separator: '[\s\-,:!=\[\]()"`/]+'
- minify:
minify_html: true
minify_css: true
minify_js: true
# Markdown extensions
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: Opencomplai
repo: opencomplai
- pymdownx.mark
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- admonition
- attr_list
- def_list
- footnotes
- meta
- tables
- toc:
permalink: true
toc_depth: 2-3
# Navigation structure
nav:
- Home: index.md
- Getting Started:
- Overview: getting-started/index.md
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- First Project: getting-started/first-project.md
- Requirements: getting-started/requirements.md
- Guides:
- Overview: guides/index.md
- Customer Workflow: guides/customer-workflow.md
- Authentication: guides/authentication.md
- API Basics: guides/api-basics.md
- Error Handling: guides/error-handling.md
- Performance: guides/performance.md
- Deployment: guides/deployment.md
- Security: guides/security.md
- CI Integration: guides/ci-integration.md
- Pre-commit Integration: guides/pre-commit.md
- Project Configuration: guides/configuration.md
- CI Code Scanning (SARIF): guides/sarif-integration.md
- CLI Reference:
- init: cli/init.md
- check: cli/check.md
- scan: cli/scan.md
- gaps: cli/gaps.md
- controls: cli/controls.md
- recommend: cli/recommend.md
- report: cli/report.md
- eval: cli/eval.md
- checker: cli/checker.md
- dashboard: cli/dashboard.md
- docs generate: cli/docs-generate.md
- risk classify: cli/risk-classify.md
- sync-metadata: cli/sync-metadata.md
- validate-manifest: cli/validate-manifest.md
- verify-output: cli/verify-output.md
- Exit Codes: cli/exit-codes.md
- API Reference:
- Overview: api/index.md
- REST API: api/rest-api.md
- Python SDK:
- Overview: api/python-sdk/index.md
- Installation: api/python-sdk/installation.md
- API Reference: api/python-sdk/api-reference.md
- JavaScript SDK:
- Overview: api/javascript-sdk/index.md
- Installation: api/javascript-sdk/installation.md
- API Reference: api/javascript-sdk/api-reference.md
- Webhooks: api/webhooks.md
- Examples:
- Overview: examples/index.md
- Basic Usage: examples/basic-usage.md
- Advanced Patterns: examples/advanced-patterns.md
- Integrations: examples/integrations.md
- Concepts:
- Rules: concepts/rules.md
- Control Codes: concepts/control-codes.md
- Controls Lifecycle: concepts/controls.md
- Evaluators: concepts/evaluators.md
- EU AI Act Principles: concepts/eu-ai-act-principles.md
- Risk Levels: concepts/risk-levels.md
- Evidence: concepts/evidence.md
- Annex IV Coverage: concepts/annex-iv-coverage.md
- Scan Workflow: concepts/scan-workflow.md
- Architecture:
- Overview: architecture/index.md
- System Design: architecture/system-design.md
- Design Decisions: architecture/design-decisions.md
- Data Model: architecture/data-model.md
- Contributing:
- Overview: contributing/index.md
- Development Setup: contributing/development-setup.md
- Coding Standards: contributing/coding-standards.md
- Testing: contributing/testing.md
- Code Review: contributing/code-review.md
- Release Process: contributing/release-process.md
- Troubleshooting:
- Overview: troubleshooting/index.md
- Common Issues: troubleshooting/common-issues.md
- FAQ: troubleshooting/faq.md
- Debugging: troubleshooting/debugging.md
# Extra CSS / JS
extra_css:
- stylesheets/tokens.css
- stylesheets/extra.css
# Extra configuration
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/Opencomplai/opencomplai
- icon: fontawesome/brands/twitter
link: https://twitter.com/opencomplai
# Copyright
copyright: Copyright © 2026 Opencomplai. All rights reserved.