Compare commits

...

2 Commits

Author SHA1 Message Date
deepend 530ad0d4b9 Merge pull request 'update bb.sh' (#5) from deepend-patch-1 into master
Reviewed-on: #5
2024-04-11 20:45:51 +00:00
deepend 9d9b0e3294 update bb.sh
fix for ascii code issue.
2022-11-15 02:18:23 +00:00
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"