-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
123 lines (115 loc) · 2.75 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
# Site Config
site_name: Apuntes DAW
site_description: Apuntes de la materia Desarrollo de Aplicaciones Web
site_author: ETSE USC
site_url: https://daw.lawebdepepe.com/
docs_dir: daw
# Dev
dev_addr: '127.0.0.1:8008'
# Repository
repo_name: Apuntes DAW
repo_url: https://github.com/BarreiroCollege/ApuntesDAW
edit_uri: blob/main/daw/
# Copyright text in the footer
copyright: Diego Barreiro © 2021-2023
# Customization
extra_css:
- assets/extra.css
extra:
social:
- icon: fontawesome/solid/globe
link: https://diego.barreiro.xyz
name: Mi Web Personal
generator: false
# Material theme for MkDocs : https://github.com/squidfunk/mkdocs-material/
theme:
name: 'material'
language: es
features:
- content.code.annotate
- navigation.indexes
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
palette:
- scheme: default
primary: deep orange
accent: blue
toggle:
icon: material/weather-sunny
name: Cambia al modo oscuro
- scheme: slate
primary: deep orange
accent: blue
toggle:
icon: material/weather-night
name: Cambia al modo claro
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
plugins:
- search
- git-revision-date-localized:
type: date
timezone: Europe/Madrid
locale: es
fallback_to_build_date: true
markdown_extensions:
- abbr
- codehilite
- def_list
- footnotes
# Markdown extensions: https://python-markdown.github.io/extensions/
- admonition
- toc:
permalink: true
- attr_list
- md_in_html
# PyMdown Extensions
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true
# Site navigation in the side bar
nav:
- Introducción:
- index.md
- Evolución: intro/index.md
- HTML:
- html/index.md
- Publicación: html/publicacion.md
- Historia: html/historia.md
- Versiones: html/versiones.md
- Codificación: html/codificacion.md
- SEO: html/seo.md
- Robots: html/robots.md
- Debug: html/debug.md
- Etiquetas: html/etiquetas.md
- HTML 5: html/html5.md
- Formularios: html/formularios.md
- CSS:
- css/index.md
- Uso: css/uso.md
- Selectores: css/selectores.md
- Modelo Caja: css/caja.md