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