This commit is contained in:
parent
7894311300
commit
38d9bf0fe2
2 changed files with 12 additions and 1 deletions
3
convert-to-html-and-upload-to-apache.sh
Normal file → Executable file
3
convert-to-html-and-upload-to-apache.sh
Normal file → Executable file
|
|
@ -10,7 +10,8 @@ convert_to_html(){
|
||||||
# NOTA: FICHEROS SIN ESPACIOS EN LOS NOMBRES
|
# NOTA: FICHEROS SIN ESPACIOS EN LOS NOMBRES
|
||||||
for MD in $(ls *.md)
|
for MD in $(ls *.md)
|
||||||
do
|
do
|
||||||
pandoc -o $MD.html $MD
|
local FILENAME="${MD%.*}"
|
||||||
|
pandoc -o $FILENAME.html $MD
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
10
index.md
Normal file
10
index.md
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
# Qué hace
|
||||||
|
Convierte todos los ficheros markdown del tag release-* a html y los sube a un apache.
|
||||||
|
|
||||||
|
# Qué más prodría hacer
|
||||||
|
- Leer una lista de usuarios y darles de alta
|
||||||
|
- Cambiar un wordpress con su cliente de línea de comandos
|
||||||
|
- Enviar emails o notificar por telegram
|
||||||
|
- Construir una aplicación (make) y subirla a un sitio de descargas
|
||||||
|
- Pasar los test de una aplicación
|
||||||
|
|
||||||
Loading…
Reference in a new issue