forked from GitHub/gf-core
Update clean_html to handle markdown sources too
This commit is contained in:
@@ -1,8 +1,20 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### This script finds all .t2t (txt2tags) files and deletes the corresponding html file
|
# This script finds all .t2t (txt2tags) and .md (markdown) files
|
||||||
|
# and deletes the corresponding html file
|
||||||
|
|
||||||
find . -name '*.t2t' | while read t2t ; do
|
find . -name '*.t2t' | while read t2t ; do
|
||||||
html="${t2t%.t2t}.html"
|
html="${t2t%.t2t}.html"
|
||||||
rm -f "$html"
|
if [ -f "$html" ] ; then
|
||||||
|
echo "$html"
|
||||||
|
rm -f "$html"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
find . -name '*.md' | while read md ; do
|
||||||
|
html="${md%.md}.html"
|
||||||
|
if [ -f "$html" ] ; then
|
||||||
|
echo "$html"
|
||||||
|
rm -f "$html"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user