Explorar el Código

Add build script

master
Dimitri Merejkowsky hace 6 años
padre
commit
ad2a73c988
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. +12
    -0
      sessions/build.sh

+ 12
- 0
sessions/build.sh Ver fichero

@@ -0,0 +1,12 @@
#!/bin/zsh

set -e

if [[ -z $1 ]]; then
echo "Usage: build.sh INPUT.md"
exit 1
fi


out=${1:s/.md/.html}
darkslide --linenos=no $1 --destination ${out}