size logo
[libreplanet-static.git] / markdown-convert.sh
1 #! /bin/sh
2
3 for f in $(find -name '*.mdwn' -type f); do
4 python -m markdown $f > ${f%mdwn}html
5 sed -i 's|<p><title>|<title>|g;s|</title></p>|</title>|g' ${f%mdwn}html
6 done