Merge branch 'stable' of ssh://vcs.fsf.org/libreplanet-static into stable
[libreplanet-static.git] / markdown-convert.sh
1 #! /bin/sh
2
3 for f in $(find -name '*.mdwn' -type f); do python -m markdown $f > ${f%mdwn}html; done