-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
166 lines (154 loc) · 4.64 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
site_name: Univesp por Estudantes
repo_name: Univesp-Computacao/portal-disciplinas
repo_url: https://github.com/Univesp-Computacao/portal-disciplinas
edit_uri: ""
theme:
name: 'material'
logo: assets/logo.png
static_templates:
- 404.html
icon:
repo: fontawesome/brands/git-alt
favicon: assets/images/favicon.png
include_search_page: false
search_index_only: true
language: pt-BR
features:
- content.code.annotate
- content.tabs.link
# - header.autohide
- navigation.expand
- navigation.indexes
# - navigation.instant
- navigation.sections
- navigation.tabs
#- navigation.tabs.sticky
#- navigation.top
#- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
#- toc.integrate
palette:
- scheme: default
primary: blue grey
accent: yellow
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: red
accent: red
toggle:
icon: material/weather-sunny
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
# Extensões
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:materialx.emoji.twemoji
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- 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
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- def_list
- pymdownx.tasklist:
custom_checkbox: true
# Customização
extra:
analytics:
name: Google Analytics
checked: True
provider: google
property: G-6BSZF5CJEX
consent:
title: Cookie consent
description: >-
Usamos cookies para reconhecer suas visitas repetidas e preferências. Com o seu consentimento, você está nos ajudando a
tornar nossa documentação melhor.
# tree da pagina
nav:
- Inicio: index.md
- Algoritmo e Programação:
- Ementa: algoritmos_e_programação/algo.md
- Perguntas e Respostas: algoritmos_e_programação/perguntas-e-respostas-python.md
- Exercício Simples: algoritmos_e_programação/exercicios-simples.md
- Exemplos módulo Turtle: algoritmos_e_programação/turtle.md
- Manipulando arquivos: algoritmos_e_programação/arquivos.md
- Banco de Dados:
- Ementa: banco_de_dados/ini.md
- Modelo Entidade-Relacionamento: banco_de_dados/entidade-relacionamento.md
- Modelo Relacional: banco_de_dados/relacional.md
- Normalização: banco_de_dados/normalizacao.md
- Exercício SQL: banco_de_dados/exercicio_sql.md
- NoSQL: banco_de_dados/nosql.md
- Estrutura de Dados:
- Ementa: estrutura_dados/est.md
- Conceitos Básicos C++: estrutura_dados/conceitosbasicos.md
- Ponteiro: estrutura_dados/pointer.md
- Referências e Cópias: estrutura_dados/referencias-e-copias.md
- Fila e Pilha - conceitos: estrutura_dados/fila_pilha.md
- Lista Ligada: estrutura_dados/lista-ligada.md
- Tabela Hash: estrutura_dados/hash-table.md
- Árvores: estrutura_dados/arvores.md
- Árvore AVL: estrutura_dados/avltree.md
- Grafos: estrutura_dados/grafos.md
- Fundamentos Web:
- Ementa: fundamentos_web/fund.md
- Fundamentos HTML: fundamentos_web/html-basico.md
- Glossário Web: fundamentos_web/glossario-web.md
- Guias, Tutoriais, etc.: fundamentos_web/guias-tutoriais-etc.md
- Orientação a Objeto:
- OOP: OOP/oop.md
- Java - Intro : OOP/java-intro.md
- Paradigmas de Programação: OOP/paradigma-programacao.md
- 04 pilares da POO: OOP/quatro-pilares.md
- Classes: OOP/classes.md
- Métodos: OOP/metodos.md
- Construtores: OOP/construtores.md
- Herança: OOP/heranca.md
- Interface e Classe Abstrata: OOP/interface.md
- Array e ArrayLists: OOP/array.md
- Excessões: OOP/exception.md
- Redes:
- Redes para Sobrevivência: rede/O que é Rede?.md
- Um pouco mais sobre Rede: rede/Mais sobre conexões.md