-
Notifications
You must be signed in to change notification settings - Fork 8
/
mkdocs.yml
140 lines (137 loc) · 4.85 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# ===================== begin_copyright_notice ============================
#
# Copyright (C) 2023-2024 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
# ===================== end_copyright_notice ==============================
site_name: GITS Capture Replay Tool
site_url: https://ubiquitous-lamp-nvr87n5.pages.github.io/
repo_url: https://github.com/intel-innersource/drivers.gpu.validation.gits
copyright: Copyright © 2024 Intel Corporation All Rights Reserved.
theme:
language: en
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
- footnotes
name: material
icon:
edit: material/pencil
view: material/eye
repo: fontawesome/brands/github
palette:
# Palette toggle 1: automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode #->2
# Palette toggle 2: light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode #->3
# Palette toggle 3: dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to system preference #->1
extra_css:
- assets/stylesheets/extra.css
plugins:
search:
# Spaces, dashes, periods and forward-slash (so serving.knative.dev/blibble can be searched as blibble).
separator: '[\/\s\-\.]+'
awesome-pages:
collapse_single_pages: true
strict: false
nav:
- About GITS: 'index.md'
- Build GITS: 'building.md'
- Use GITS: 'usage.md'
- Documentation:
- Terminology: 'documentation/terminology.md'
- Recorder: 'documentation/recorder.md'
- Player: 'documentation/player.md'
- Streams:
- Binary Streams: 'documentation/streams/binary_stream.md'
- C-Code Streams: 'documentation/streams/ccode_stream.md'
- Configuration:
- General: 'documentation/configuration/general_options.md'
- Level Zero: 'documentation/configuration/LevelZero.md'
- OpenCL: 'documentation/configuration/OpenCL.md'
- OpenGL: 'documentation/configuration/OpenGL.md'
- Vulkan: 'documentation/configuration/vulkan.md'
- API:
- Level Zero:
- Indirect Access Pointers Locations: 'documentation/LevelZero/l0_gits_indirect_access_pointers_locations.md'
- Lua Scripting: 'documentation/LevelZero/lua.md'
- Metagenerator: 'documentation/LevelZero/metagenerator.md'
- Options: 'documentation/LevelZero/options_features.md'
- Subcapture: 'documentation/LevelZero/subcaptures.md'
- OpenCL:
- Generator: 'documentation/OpenCL/Generator.md'
- Indirect Access Pointers Locations: 'documentation/OpenCL/cl_gits_indirect_access_pointers_locations.md'
- Lua Scripting: 'documentation/lua_scripts.md'
- Userguides:
- Usage: 'userguides/userguide.md'
- FAQ: 'userguides/FAQ.md'
- Recipes:
- General: 'userguides/recipes.md'
- Linux: 'userguides/recipes_linux.md'
- Windows: 'userguides/recipes_windows.md'
- Application-specific Issues: 'userguides/applicationspecific_issues.md'
- Debug Solutions: 'userguides/debug_solutions.md'
- Community:
- Reproducers: 'community/HowToPrepareReproducer.md'
- Documentation: 'community/Documentation.md'
markdown_extensions:
- pymdownx.striphtml:
strip_comments: true
- pymdownx.critic # {--deleted--}, {++added++}, {~~1~>2 is a pair~~}, {==Highlighting==}, {>>inline comments<<}
- pymdownx.caret # ^^Insert me^^ (underline), A^T^A (superscript)
- pymdownx.mark # ==This was marked== (highlight)
- pymdownx.tilde # ~~This was deleted~~ (strikethrough), H~2~O (subscript)
- pymdownx.keys # ++cmd+ctrl+alt+del++
- pymdownx.details
- def_list # - [ ], - [x], 1., ...
- footnotes # here [^1] is the link. later: [^1]: blah blah blah.
- mdx_truly_sane_lists
- admonition
- pymdownx.tasklist:
custom_checkbox: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences:
# make exceptions to highlighting of code:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- strip_comments