eleventy-plugin-backlinks
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -16,2 +16,8 @@ # Changelog | ||
## 0.2.1 - 2022-10-26 | ||
### Fixed | ||
- ([`ad2aeff`](https://github.com/binyamin/eleventy-plugin-backlinks/commit/ad2aeffb8d1d5c00f74ec5e757ed8bc56a23ba19)) Normalize strings when identifying backlinks. See [binyamin/eleventy-garden#91](https://github.com/binyamin/eleventy-garden/pull/91). | ||
## 0.2.0 - 2022-06-19 | ||
@@ -18,0 +24,0 @@ |
function caselessCompare(a, b) { | ||
return a.toLowerCase() === b.toLowerCase(); | ||
return a.normalize().toLowerCase() === b.normalize().toLowerCase(); | ||
} | ||
@@ -4,0 +4,0 @@ |
{ | ||
"name": "eleventy-plugin-backlinks", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Collect and display backlinks from your notes", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
8185