Skip to content

Commit

Permalink
fix: better title
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocassol committed May 2, 2024
1 parent 8bb06bb commit 580ef8c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/pluginAssets/katex/katex.css"><script type="application/javascript" src="/pluginAssets/mermaid/mermaid.min.js"></script><script type="application/javascript" src="/pluginAssets/mermaid/mermaid_render.js"></script><link rel="stylesheet" href="/pluginAssets/highlight.js/atom-one-light.css">
<title>Blog - brunocassol.com</title>
<title>Blog - Bruno Cassol</title>
</head>
<body>
<div class="exported-note">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/pluginAssets/katex/katex.css"><script type="application/javascript" src="/pluginAssets/mermaid/mermaid.min.js"></script><script type="application/javascript" src="/pluginAssets/mermaid/mermaid_render.js"></script><link rel="stylesheet" href="/pluginAssets/highlight.js/atom-one-light.css">
<title>Debugging slow MySQL and MariaDB queries - brunocassol.com</title>
<title>Debugging slow MySQL and MariaDB queries - Bruno Cassol</title>
</head>
<body>
<div class="exported-note">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/pluginAssets/katex/katex.css"><script type="application/javascript" src="/pluginAssets/mermaid/mermaid.min.js"></script><script type="application/javascript" src="/pluginAssets/mermaid/mermaid_render.js"></script><link rel="stylesheet" href="/pluginAssets/highlight.js/atom-one-light.css">
<title>How I blog using Joplin's "EXPORT HTML Directory" plus GitHub Pages - brunocassol.com</title>
<title>How I blog using Joplin's "EXPORT HTML Directory" plus GitHub Pages - Bruno Cassol</title>
</head>
<body>
<div class="exported-note">
Expand Down
2 changes: 1 addition & 1 deletion joplin_to_github.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ pages.forEach(page => {

// Append " - brunocassol.com" to page HTML <title> 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();
Expand Down

0 comments on commit 580ef8c

Please sign in to comment.