slugify 1.0.0 slugify: ^1.0.0 copied to clipboard
Converts a string into a slug. Useful for URLs, filenames, IDs, and more.
Slugify #
Dart[1] package to convert a string to a slug, useful for URLs, filenames, IDs and more.
Features #
- Removes unfavorable characters
- Approximates replacements for characters not in the Latin alphabet
- Options for a custom delimiter and case sensitivity
Usage #
import 'package:slugify/slugify.dart';
// Use with default options.
String slug = Slugify('Hello, World! Foo Bar');
print(slug); // hello-world-foo-bar
// Use with custom options.
String slug2 = Slugify('Hello, World! Foo Bar', lowercase: false, delimiter: '🙂');
print(slug2) // Hello🙂World🙂Foo🙂Bar
Options #
Name | Type | Default | Description |
---|---|---|---|
delimiter |
String |
"-" |
Separator between words |
lowercase |
bool |
true |
Convert text to lowercase |
[1]: This package supports Dart 2