Skip to content

Commit

Permalink
fix: slugify θ as th (#354)
Browse files Browse the repository at this point in the history
Fixes: #353
  • Loading branch information
Trott committed Oct 2, 2022
1 parent 9105249 commit 19e8ca1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions slug.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@
ε: 'e',
ζ: 'z',
η: 'h',
θ: '8',
θ: 'th',
ι: 'i',
κ: 'k',
λ: 'l',
Expand Down Expand Up @@ -340,7 +340,7 @@
Ε: 'E',
Ζ: 'Z',
Η: 'H',
Θ: '8',
Θ: 'Th',
Ι: 'I',
Κ: 'K',
Λ: 'L',
Expand Down
4 changes: 2 additions & 2 deletions test/slug.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ describe('slug', function () {
ε: 'e',
ζ: 'z',
η: 'h',
θ: '8',
θ: 'th',
ι: 'i',
κ: 'k',
λ: 'l',
Expand Down Expand Up @@ -176,7 +176,7 @@ describe('slug', function () {
Ε: 'E',
Ζ: 'Z',
Η: 'H',
Θ: '8',
Θ: 'Th',
Ι: 'I',
Κ: 'K',
Λ: 'L',
Expand Down

0 comments on commit 19e8ca1

Please sign in to comment.