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

outdated

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

44
likes
35
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

License

MIT (license)

More

Packages that depend on slugify