Explorar el Código

build.sh: take session number instead of md path

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

+ 2
- 3
sessions/build.sh Ver fichero

@@ -3,10 +3,9 @@
set -e

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


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