Add alt text as title text... for the single image on my entire site

This commit is contained in:
askiiart 2024-03-12 20:45:03 -05:00
parent d47156ebba
commit ebbd2bef19
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67
6 changed files with 19 additions and 4 deletions

View file

@ -7,4 +7,5 @@ find . -name "*.md" | while read -r item; do
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)"
sed -i s/sourceCode\ /language-/g ${item}.html
python3 $dir/regex-chicanery.py ${item}.html
done