update bb.sh

fix for ascii code issue.
This commit is contained in:
deepend 2022-11-15 02:18:23 +00:00
parent 2df95ffaa0
commit 9d9b0e3294
1 changed files with 2 additions and 2 deletions

4
bb.sh
View File

@ -897,8 +897,8 @@ create_includes() {
if [[ -f $footer_file ]]; then cp "$footer_file" .footer.html
else {
protected_mail=${global_email//@/@}
protected_mail=${protected_mail//./.}
protected_mail=${global_email//@/&}
protected_mail=${protected_mail//./&}
echo "<div id=\"footer\">$global_license <a href=\"$global_author_url\">$global_author</a> &mdash; <a href=\"mailto:$protected_mail\">$protected_mail</a><br/>"
echo 'generated with <a href="https://tildegit.org/club/bashblog">bashblog</a>, a single bash script to easily create blogs like this one</div>'
} >> ".footer.html"