raw markdown accessibility

This commit is contained in:
veclav talica 2024-02-23 23:29:42 +05:00
parent 6a5ee8f800
commit 0d3afee662

View File

@ -36,3 +36,10 @@ for f in ./html/tags/*.html; do
done
./tools/feed_generator.py ./articles/ $URL > ./html/feed.xml
mkdir -p "./html/markdown/"
for d in ./articles/*/; do
if [ -d "$d" ]; then
cp "$d/page.mmd" "./html/markdown/$(basename $d).mdd"
fi
done