Diferencia entre revisiones de «Usuario:ManuelRomero/hugo»
De WikiEducator
(→Docsy) |
|||
Línea 46: | Línea 46: | ||
</source> | </source> | ||
*En el fichero '''''md''''' se incluye el nombre de emojin que podemos sacar del '''''cheat sheet''''' https://www.webfx.com/tools/emoji-cheat-sheet/ | *En el fichero '''''md''''' se incluye el nombre de emojin que podemos sacar del '''''cheat sheet''''' https://www.webfx.com/tools/emoji-cheat-sheet/ | ||
+ | ==Syna== | ||
+ | ====Documentación==== | ||
+ | https://github.com/okkur/syna | ||
+ | https://about.okkur.org/syna/docs/ | ||
+ | ====Instalación==== | ||
+ | <source lang=bash> | ||
+ | hugo new site main | ||
+ | cd main | ||
+ | cd themes | ||
+ | git clone https://git.okkur.org/syna themes/syna | ||
+ | </source> | ||
+ | *Establecer el tema en '''''config.toml'''''. | ||
+ | <source lang=bash> | ||
+ | .... | ||
+ | theme = 'syna' | ||
+ | .... | ||
+ | </source> |
Revisión de 22:00 29 dic 2021
Docsy
imgproc
- Si quiero usar el shortdoce imgproc
- Situación
tengo un fichero p.e objetivo.md dónde quiero usar una imagen llamada objetivo_general.png
- Acción'
Creo en content... un directorio llamado objetivo en él creo un fichero llamado index.md con el contenido de objetivo.md Igualmente copio la imagen objetivo_general.png Establezco el recuros de la imagen en el frontmatter de index.md:
*********** resources: - src: "objetivo.jpg" ---
markmap
- En el config.toml
# Para crear gráficos direccionales [params.markmap] enable = true
- En el fichero md
```markmap #raiz_1 ##raiz_1_1 ##raiz_1_2 ##raiz_1_3 ### raiz_1_3_1 ### raiz_1_3_2 ### raiz_1_3_2 .... ```
emojin
- Común para todo hugo
- En el config.toml
# Para poder cargar emogin https://www.webfx.com/tools/emoji-cheat-sheet/
enableEmoji = true
- En el fichero md se incluye el nombre de emojin que podemos sacar del cheat sheet https://www.webfx.com/tools/emoji-cheat-sheet/
Syna
Documentación
https://github.com/okkur/syna https://about.okkur.org/syna/docs/
Instalación
hugo new site main cd main cd themes git clone https://git.okkur.org/syna themes/syna
- Establecer el tema en config.toml.
....
theme = 'syna'
....