diff --git a/docs/blog/2023-02-07-Debugging-slow-MySQL-and-MariaDB-querie.html b/docs/blog/2023-02-07-Debugging-slow-MySQL-and-MariaDB-querie.html
index 09bb8cc..9ac8daf 100644
--- a/docs/blog/2023-02-07-Debugging-slow-MySQL-and-MariaDB-querie.html
+++ b/docs/blog/2023-02-07-Debugging-slow-MySQL-and-MariaDB-querie.html
@@ -2,7 +2,7 @@
- Debugging slow MySQL and MariaDB queries - brunocassol.com
+ Debugging slow MySQL and MariaDB queries - Bruno Cassol
diff --git a/docs/blog/2023-02-08-How-I-blog-using-joplins-EXPORT-HTML-Di.html b/docs/blog/2023-02-08-How-I-blog-using-joplins-EXPORT-HTML-Di.html
index 8c4ef4f..c1a9f11 100644
--- a/docs/blog/2023-02-08-How-I-blog-using-joplins-EXPORT-HTML-Di.html
+++ b/docs/blog/2023-02-08-How-I-blog-using-joplins-EXPORT-HTML-Di.html
@@ -2,7 +2,7 @@
- How I blog using Joplin's "EXPORT HTML Directory" plus GitHub Pages - brunocassol.com
+ How I blog using Joplin's "EXPORT HTML Directory" plus GitHub Pages - Bruno Cassol
diff --git a/joplin_to_github.js b/joplin_to_github.js
index 86ca9da..4abea02 100644
--- a/joplin_to_github.js
+++ b/joplin_to_github.js
@@ -100,7 +100,7 @@ pages.forEach(page => {
// Append " - brunocassol.com" to page HTML of all pages except home
if (page.filePath !== 'index.html') {
- page.$('title').text(page.$('title').text() + ' - brunocassol.com');
+ page.$('title').text(page.$('title').text() + ' - Bruno Cassol');
}
let htmlContent = page.$.html();