forked from basedosdados/mais
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
86 lines (76 loc) · 1.96 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
site_name: Base Dos Dados Mais
theme:
name: material
icon:
repo: fontawesome/brands/github
palette:
primary: green
language: pt
# logo: https://avatars3.githubusercontent.com/u/71097635?s=400&u=59375d7ae320f43b2bb6accc8ef6dd79837c88f5&v=4
favicon: images/bdmais_minilogo_vertical.png
features:
# - header.autohide
- navigation.tabs
repo_url: https://github.com/basedosdados/mais
repo_name: basedosdados/mais
extra:
version: 2.0
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/basedosdados
nav:
- Introdução: index.md
- Como acessar:
- BigQuery: access_data_bq.md
- Local: access_data_local.md
- Colaborar:
- Dados: colab_data.md
- Manual de estilo:
- Bases e tabelas: style_naming_datasets_tables.md
- Colunas: style_naming_columns.md
- Valores: style_data.md
- Analisar:
- Início: analysis.md
- API:
- Python: reference_api_py.md
- R: reference_api_r.md
- CLI: reference_api_cli.md
- Apoie! 💚:
- Início: support.md
- DATATHON 👩🏻💻:
- 1ª edição (mar/2021): datathon_2021.md
- ODD (mar/2021): odd_2021.md
markdown_extensions:
- admonition
- pymdownx.details
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tabbed
- pymdownx.superfences
- mkdocs-click
google_analytics:
- !!python/object/apply:os.getenv ["GOOGLE_ANALYTICS_KEY"]
- auto
extra_javascript:
- js/termynal.js
- js/custom.js
plugins:
- search
- mkdocstrings:
handlers:
python:
# selection:
# selection_opt: true
rendering:
rendering_opt: "value"
setup_commands:
- import sys
- sys.path.append("docs")
- sys.path.append("python-package")
watch:
- python-package/basedosdados
extra_css:
- css/termynal.css
- css/custom.css