13 lines
No EOL
566 B
Bash
Executable file
13 lines
No EOL
566 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
dir=$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)
|
|
|
|
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' |