eae-am-deutschen-platz/documentation/build

9 lines
104 B
Bash
Executable File

#!/bin/sh
set -e
find -type f -name '*.md' | while read file
do
pandoc -i $file -o ${file}.html
done