generated from processing/processing-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
180 lines (167 loc) · 5.42 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
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
site_name: ziviDomeLive - Processing Library Documentation
site_url: https://vicvalentim.github.io/ziviDomeLive/
repo_url: https://github.com/vicvalentim/ziviDomeLive
repo_name: "GitHub"
edit_uri: "blob/main/docs/"
site_description: "Real-time immersive visuals and 3D rendering framework for fulldome and VR in Processing"
site_author: "Victor Valentim"
copyright: Copyright © 2024 <a href="https://vicvalentim.com/" target="_blank">Victor Valentim</a> - MIT License
theme:
name: material
language: en
font:
text: Noto Sans
code: Noto Mono
favicon: assets/png/favicon.ico
logo: assets/png/logo.png
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: green
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- toc.integrate
- navigation.prune
- toc.follow
- navigation.footer
icon:
repo: fontawesome/brands/github
search: material/magnify
close: material/close-circle
plugins:
- search
- offline
- i18n:
reconfigure_material: true
reconfigure_search: true
docs_structure: suffix
languages:
- locale: en
default: true
name: English
build: true
- locale: pt
name: Português (Brasil)
build: true
site_name: ziviDomeLive - Documentação da Biblioteca Processing
site_description: "Framework de visualização imersiva em tempo real e renderização 3D para fulldome e VR em Processing"
nav_translations:
Home: "Início"
Installation: "Instalação"
Requirements: "Requisitos"
Installation Steps: "Passos de Instalação"
Dependencies: "Dependências"
Getting Started: "Introdução"
Quickstart Guide: "Guia Rápido"
Key Features: "Funcionalidades Principais"
Usage: "Uso"
Basic Usage: "Uso Básico"
Scene Management: "Gerenciamento de Cenas"
Event Handling: "Manipulação de Eventos"
External Integration: "Integração Externa"
API Reference: "Referência da API"
Overview: "Visão Geral"
Core Classes: "Classes Principais"
Scene Interface: "Interface de Cena"
Helper Functions: "Funções Auxiliares"
Examples: "Exemplos"
Basic Examples: "Exemplos Básicos"
Advanced Examples: "Exemplos Avançados"
Contributing: "Contribuindo"
Known Issues: "Problemas Conhecidos"
Author: "Autor"
License: "Licença"
markdown_extensions:
- admonition
- attr_list
- pymdownx.details
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.details
- pymdownx.superfences
- pymdownx.betterem
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path:
- "./examples/"
- "./examples/advanced_usage"
- "./examples/getting_started"
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
extra:
consent:
title: "Cookie consent"
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
cookies:
analytics: Google Analytics
custom: Custom cookie
alternate:
- name: English
link: /en/
lang: en
- name: Português (Brasil)
link: /pt/
lang: pt
pt_consent:
title: "Consentimento de Cookies"
description: >-
Utilizamos cookies para reconhecer suas visitas e preferências,
além de medir a eficácia da nossa documentação. Com seu consentimento,
você nos ajuda a melhorar nossa documentação.
extra_css:
- assets/css/extra.css
extra_javascript:
- assets/js/extra.js
# Navegação da documentação
nav:
- Home: index.md
- Installation:
- Requirements: installation/requirements.md
- Installation Steps: installation/installation-steps.md
- Dependencies: installation/dependencies.md
- Getting Started:
- Quickstart Guide: getting-started/quickstart.md
- Key Features: getting-started/features.md
- Usage:
- Basic Usage: usage/basic-usage.md
- Scene Management: usage/scene-management.md
- Event Handling: usage/event-handling.md
- External Integration: usage/external-integration.md
- API Reference:
- Overview: api/overview.md
- Core Classes: api/core-classes.md
- Scene Interface: api/scene-interface.md
- Helper Functions: api/helper-functions.md
- Examples:
- Basic Examples: examples/basic.md
- Advanced Examples: examples/advanced.md
- Contributing: contributing.md
- Known Issues: known-issues.md
- Author: author.md
- License: license.md