Created
July 25, 2023 11:38
-
-
Save stamat/bbf6ad4da992e8f81a01774dbd362ae2 to your computer and use it in GitHub Desktop.
Slugify data for testing your own slugify (sanitize_title) implementation, scraped from https://salferrarello.com/wordpress-sanitize-title-javascript/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"input": "AB CD ED G", | |
"expected": "ab-cd-ed-g" | |
}, | |
{ | |
"input": "AB 12 34 DE", | |
"expected": "ab-12-34-de" | |
}, | |
{ | |
"input": "The-Beginning--and---the-end", | |
"expected": "the-beginning-and-the-end" | |
}, | |
{ | |
"input": "The-áZZmtéqr í ou Ó ----Ú--", | |
"expected": "the-azzmteqr-i-ou-o-u" | |
}, | |
{ | |
"input": "Trailing Space", | |
"expected": "trailing-space" | |
}, | |
{ | |
"input": "Trailing Dash ---", | |
"expected": "trailing-dash" | |
}, | |
{ | |
"input": "Trailing Dash Space ---", | |
"expected": "trailing-dash-space" | |
}, | |
{ | |
"input": "523 abc GHI!*&m5^&3#e@$/", | |
"expected": "523-abc-ghim53e" | |
}, | |
{ | |
"input": "Captain <strong>Awesome</strong>", | |
"expected": "captain-awesome" | |
}, | |
{ | |
"input": "Spaces, -Dashes-, and other ch@racter$ are %REMOVED%!", | |
"expected": "spaces-dashes-and-other-chracter-are-removed" | |
}, | |
{ | |
"input": "M.Brown/Beige", | |
"expected": "m-brown-beige" | |
}, | |
{ | |
"input": "This contains an en dash–here", | |
"expected": "this-contains-an-en-dash-here" | |
}, | |
{ | |
"input": "This contains an en dash – here", | |
"expected": "this-contains-an-en-dash-here" | |
}, | |
{ | |
"input": "This contains an en dash-– here with a keyboard dash", | |
"expected": "this-contains-an-en-dash-here-with-a-keyboard-dash" | |
}, | |
{ | |
"input": "This contains an em dash—here", | |
"expected": "this-contains-an-em-dash-here" | |
}, | |
{ | |
"input": "This contains an em dash — here", | |
"expected": "this-contains-an-em-dash-here" | |
}, | |
{ | |
"input": "This contains an em dash-—-here surrounded by keyboard dashes.", | |
"expected": "this-contains-an-em-dash-here-surrounded-by-keyboard-dashes" | |
}, | |
{ | |
"input": "Non-breaking space", | |
"expected": "non-breaking-space" | |
}, | |
{ | |
"input": "HTML Entity Non-Breaking Space", | |
"expected": "html-entity-non-breaking-space" | |
}, | |
{ | |
"input": "one–two—three×four¡five®", | |
"expected": "one-two-threefourfive" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment