Only run on changed/new files
This commit is contained in:
parent
b00bc92482
commit
7d6e54cdb7
1 changed files with 6 additions and 4 deletions
|
@ -2,10 +2,12 @@
|
||||||
set -e
|
set -e
|
||||||
dir=$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)
|
dir=$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)
|
||||||
|
|
||||||
find . -name "*.md" | while read -r item ; do
|
git status --porcelain | awk 'match($1, "(M|A|\?\?)"){print $2}' | while read -r item ; do
|
||||||
|
if [[ ${item} == *.md ]]; then
|
||||||
item="${item%.*}"
|
item="${item%.*}"
|
||||||
echo "Currently processing ${item}"
|
echo "Currently processing ${item}"
|
||||||
pandoc -f markdown-smart --data-dir . --template ${dir}/template.html -t html -o ${item}.html ${item}.md --metadata title="$(grep -m 1 -oP '(?<=^# ).*' ${item}.md | cat)"
|
pandoc -f markdown-smart --data-dir . --template ${dir}/template.html -t html -o ${item}.html ${item}.md --metadata title="$(grep -m 1 -oP '(?<=^# ).*' ${item}.md | cat)"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
find . \( ! -regex './md2html.sh' \) -type f | xargs sed -i 's/sourceCode /language-/g'
|
find . \( ! -regex './md2html.sh' \) -type f | xargs sed -i 's/sourceCode /language-/g'
|
Loading…
Reference in a new issue