-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
172 lines (145 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
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
site_name: Notas de Aula em Programação Funcional
repo_url: https://github.com/lasarojc/fp_notes
site_description: Notas de aula do curso de Sistemas Distribuídos 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:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.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/ds_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:
#- Início: index.html
- Apresentação: preface.md
- Introdução:
- intro/index.md
- Haskell: intro/haskell.md
- Mais Haskell: intro/more.md
- Funções I:
- functions/index.md
- Se então, senão: functions/ifthenelse.md
- Guardas!: functions/guards.md
- Padrões: functions/pattern_matching.md
- Definições Locais: functions/where_let_in.md
- Tipos I:
- types/index.md
- Básicos: types/basic.md
- Funções: types/functions.md
- Operadores: types/operators.md
- Tuplas: types/tuples.md
- Listas: types/lists.md
- Desenvolvimento I:
- development/index.md
- Módulos: development/modules.md
- Quick, Check!: development/quickcheck.md
- HSpec: development/hspec.md
- Funções II:
- functions2/index.md
- Padrões: functions2/pattern_matching.md
- Recursão: functions2/recursion.md
- Tipos II:
- types2/index.md
- Apelidos: types2/userdefined.md
- Tipos algébricos: types2/algebraic.md
- Polimorfismo: types2/type_variables.md
- Desenvolvimento II:
- development2/index.md
- Filas: development2/queue.md
- Pilhas: development2/stack.md
- Mapa: development/map.md
- Cálculo λ: lambda/lambda.md
- Funções III:
- Ordem superior: functions3/highorder.md
- Que preguiça: functions3/lazy.md
- Recursão de cauda: functions3/tail_recursion.md
- Entrada e Saída:
- IO: io/io.md
- Testes: tests/iotest.md
- Desenvolvimento III:
- Uma aplicação: development3/app.md
- Projetos de exemplo: development3/project.md
- Erros comuns: postface.md