-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
142 lines (127 loc) · 4.2 KB
/
mkdocs.yml
File metadata and controls
142 lines (127 loc) · 4.2 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
site_name: Notas de Aula em Programação em C
repo_url: https://github.com/lasarojc/c_notes
site_description: Notas de aula do curso de Sistemas Programação em C da FACOM/UFU
edit_uri: ""
extra_javascript:
- https://unpkg.com/mermaid@8.5.1/dist/mermaid.min.js
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- javascripts/mathjaxhelper.js
extra_css:
- css/extra.css
theme:
name: material
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
accent: deep orange
primary: blue grey
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
language: pt
# custom_dir: overrides
features:
- search.suggest
- search.highlight
- navigation.indexes
- navigation.tracking
markdown_extensions:
- toc:
toc_depth: 5
- attr_list
#- mdx_math
- admonition
- footnotes
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
linenums: true
linenums_style: pymdownx-inline
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed
- pymdownx.tilde
- pymdownx.keys
- pymdownx.snippets:
check_paths: true
copyright: "Copyright © 2021 Lásaro Camargos"
extra:
social:
# - icon: fontawesome/brands/twitter
# link: https://twitter.com/...
- icon: fontawesome/brands/github
link: https://github.com/lasarojc/c_notes
name: These notes on Github
# - icon: fontawesome/brands/slack
# link: https://slack.knative.dev
# name: Slack
analytics:
provider: google
property: G-65TK61CS8M
version:
provider: mike
plugins:
- search
# - bibtex:
# bib_file: "refs.bib"
# cite_style: "pandoc"
# - drawio-exporter:
# cache_dir: 'drawio-exporter'
# drawio_executable: null
# drawio_args:
# - --no-sandbox
# format: svg
# sources: '*.drawio'
#
nav:
- Prefácio: preface.md
- "O computador é uma máquina burra": cap01.md
- "Compilação e Execução": cap02.md
- "Variáveis, Entrada / Saída e Operadores": cap03.md
- "Variáveis (II)": cap04.md
- "Seleção Simples": cap05.md
- "Seleção Simples (II)": cap06.md
- "Switch": cap07.md
- "Repetição (I)": cap08.md
- "Repetição (II)": cap09.md
- "Arranjos Unidimensionais": cap10.md
- "Caracteres, Vetores de Caracteres e Strings": cap11.md
- "Bits, bytes e bases numéricas": cap12.md
- "Strings e Funções": cap13.md
- "Funções Úteis I": cap14.md
- "Arranjos Multidimensionais": cap15.md
- "Ordenação de Arranjos": cap16.md
- "Estruturas Não-Homogêneas": cap17.md
- "Referências": cap18.md
- "Referências II": cap19.md
- "Alocação Dinâmica": cap20.md
- "Vetores de Referências": cap21.md
- "Alocação Dinâmica II": cap22.md
- "Arquivos": cap23.md
- "Navegação dentro do arquivo": cap24.md
- "Alocação Dinâmica": cap25.md
- "BigNum": cap26.md
- "Listas": cap27.md
- "Filas": cap28.md
- "Pilhas": cap29.md
- "Árvores": cap30.md