Slugify icon indicating copy to clipboard operation
Slugify copied to clipboard

Option for limiting the length of the generated slug

Open FarshanAhamed opened this issue 4 years ago • 3 comments

To make the URL SEO friendly, accepting a length parameter in Config or GenerateSlug() for truncating the string to a limit would be a good addition.

FarshanAhamed avatar Nov 09 '20 15:11 FarshanAhamed

Any suggestions for a good default here?

ctolkien avatar Nov 26 '20 23:11 ctolkien

@ctolkien Better to keep it unlimited by default, I guess.

FarshanAhamed avatar Nov 27 '20 10:11 FarshanAhamed

A oversized slug can be first be murmur hashed, then trimmed to max-length minus 3 characters and appended with the hex number of the first hex-byte of the hash "-xx"

Zetanova avatar Apr 05 '24 11:04 Zetanova