blob: 0d475caf131c35586da0159a0519ab31e1018476 (
plain)
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
|
#
# Mkdocs configuration
#
# Basic info
site_name: Protocolos Sociotécnicos
# Folders
docs_dir : docs
site_dir : site
# URLs
#repo_url: https://git.fluxo.info/templates
repo_url: https://0xacab.org/rhatto/protocolos
edit_uri: ''
# Development
# Site address is bind to 0.0.0.0 so it works find inside a Docker container.
# A better config would be desirable.
#dev_addr: '0.0.0.0:8040'
# Theme configuration
# See https://www.mkdocs.org/user-guide/choosing-your-theme/
# https://squidfunk.github.io/mkdocs-material/
theme:
name : material
collapse_navigation: true
titles_only : false
logo : https://fluxo.info/images/fluxo.png
palette:
primary: blue grey
# Do not use external fonts
# Usefult for offline operation
# See https://squidfunk.github.io/mkdocs-material/setup/changing-the-fonts/#autoloading
#font: false
# Extra stylesheets
extra_css:
- site.css
# Plugins
# https://www.mkdocs.org/dev-guide/plugins/
plugins:
# Search
# See https://www.mkdocs.org/user-guide/configuration/#search
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-search/
search: {}
# Awesome Pages Plugin
# https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin
awesome-pages: {}
# The built-in privacy plugin automatically identifies external assets as
# part of the build process and downloads all assets for very simple
# self-hosting
#
# See https://squidfunk.github.io/mkdocs-material/plugins/privacy/
# https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#built-in-privacy-plugin
privacy: {}
# BibTeX support using mkdocs-bibtex
# https://pypi.org/project/mkdocs-bibtex/
# https://github.com/shyamd/mkdocs-bibtex
bibtex:
bib_dir : "biblio"
csl_file : "apa.csl"
#cite_inline: true
# Internationalization
i18n:
docs_structure: suffix
languages:
- locale: en
name: English
build: true
- locale: pt
name: Português
build: true
default: true
nav_translations:
Provedor: Provider
# Markdown extensions
# See https://www.mkdocs.org/user-guide/configuration/#markdown_extensions
# https://squidfunk.github.io/mkdocs-material/setup/extensions/
markdown_extensions:
# Footnotes
# https://squidfunk.github.io/mkdocs-material/reference/footnotes/
footnotes: {}
# Tasklist handling
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#tasklist
pymdownx.tasklist:
custom_checkbox: true
admonition: {}
pymdownx.details: {}
# Copyright notice
copyright: Copyleft © 2024
# Extra template parameters
# https://www.mkdocs.org/user-guide/configuration/#extra
extra:
generator: false
|