Slugify
Converts text into a URL-friendly slug by normalizing, lower casing, and replacing spaces with hyphens.
Input parameters
Name | Description | Type | Required | Default value |
---|---|---|---|---|
text | The input text that will be processed to generate a URL-safe slug representation. | STRING | true |
Output
Name | Description | Type | Default value |
---|---|---|---|
result | The result of generating a slug, which is a normalized, simplified, and URL-friendly version of the input text. | STRING | RESULT |