This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
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