diff -up a/bb.sh b/bb.sh
--- a/bb.sh 2026-06-10 01:48:10.809109142 -0600
+++ b/bb.sh 2026-06-10 01:48:48.019943498 -0600
@@ -965,8 +965,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> — <a href=\"mailto:$protected_mail\">$protected_mail</a><br/>"
echo 'Generated with <a href="https://github.com/cfenollosa/bashblog">bashblog</a>, a single bash script to easily create blogs like this one</div>'
} >> ".footer.html"