slugify 2.0.0 copy "slugify: ^2.0.0" to clipboard
slugify: ^2.0.0 copied to clipboard

Converts a string into a slug. Useful for URLs, filenames, IDs, and more.

slugify #

Converts any String to a slug. Useful for URLs, filenames, IDs, and more.

Features #

  • Multi-language support
  • Removes unfriendly characters
  • Approximates replacements for characters not in the Latin alphabet
  • Configurable options
  • Null safe with Dart 2.12

Usage #

import 'package:slugify/slugify.dart';

// Use with default options.
var slug = slugify('Hello, World! Foo Bar');
print(slug); // hello-world-foo-bar

// Use with custom options.
var 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
40
likes
135
pub points
95%
popularity

Publisher

unverified uploader

Converts a string into a slug. Useful for URLs, filenames, IDs, and more.

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (LICENSE)

More

Packages that depend on slugify