-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
106 lines (97 loc) · 2.65 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
# 1. Información del Taller
site_name: Aprender GIT desde cero
site_description: La Jaqueria - Aprender GIT desde cero
site_author: La Jaquería
site_url: https://lajaqueria.org/
# 2. Repositorio
repo_name: LaJaqueria/aprender-git
repo_url: https://github.com/LaJaqueria/aprender-git
edit_uri: ""
# 3. Copyright
copyright: Copyright © 2019 La Jaquería
# 4. RRSS
extra:
social:
- type: github
link: https://github.com/LaJaqueria
- type: twitter
link: https://twitter.com/lajaqueria
- type: linkedin
link: https://www.linkedin.com/company/lajaqueria/
# 5. Navegación
nav:
# Modelo para empezar: Intro, Info del autor y la instalación
- Introducción: index.md
- Autor / Autores: about.md
- Instalación: instalacion.md # TODO: falta VSCODE, extensiones y demás
# Aquí seguirían tus secciones
# TODO:
# Por último, comenta estas 4 líneas
- Ayuda para escribir: # TODO:
- Notas: ayuda/ayuda.md # TODO:
- Markdown: ayuda/markdown.md # TODO:
- Material Design: ayuda/material.md # TODO:
# 6. Google Analytics
#google_analytics:
# - !!python/object/apply:os.getenv ["GOOGLE_ANALYTICS_KEY"]
# - auto
# 7. Configuración del tema
theme:
name: material
# Color - Fuentes - Lenguaje
palette:
primary: blue grey
accent: red
font:
text: Roboto
code: Roboto Mono
logo: img/favicon.png
favicon: img/favicon.png
language: es
# Página 404
static_templates:
- 404.html
# No incluir los JavaScript de MkDocs
#include_search_page: false
#search_index_only: true
# 8. Extensiones
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.codehilite:
linenums: true
# guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# 9. Necesario para la extensión pydownx.arithmatex
extra_javascript:
# Este fichero es opcional y solo si se quiere sobreescribir la configuracion del plugin
#- js/extra.js
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML
# 10. Plugins
plugins:
- search
- minify:
minify_html: true