Skip to content

Commit

Permalink
Fix missing close quotation (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
keang authored Jun 26, 2023
1 parent 7df3ef0 commit a64f5e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ module.exports = function (eleventyConfig) {
if(deadLink){
return `<a class="internal-link is-unresolved" href="/404">${title}</a>`;
}
return `<a class="internal-link data-note-icon="${noteIcon}" href="${permalink}${headerLinkPath}">${title}</a>`;
return `<a class="internal-link" data-note-icon="${noteIcon}" href="${permalink}${headerLinkPath}">${title}</a>`;
})
);
});
Expand Down

0 comments on commit a64f5e2

Please sign in to comment.