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

outdatedDart 1 only

Converts strings into slugs, for pretty URLs

slugify #

Converts strings to slugs, for pretty URLs

Features #

  • Removes special characters
  • Approximates replacements for characters not in the Latin alphabet
  • Choose your own delimiter and letter case

Usage #

import 'package:slugify/slugify.dart';

Slugify slugify = new Slugify();
String slug = slugify.slugify('Hello World!');

print(slug); // hello-world

Custom settings #

Slugify slugify = new Slugify(delimiter: '_', lowercase: false);
String slug = slugify.slugify('HELLO WORLD');

print(slug); // HELLO_WORLD
40
likes
0
pub points
95%
popularity

Publisher

unverified uploader

Converts strings into slugs, for pretty URLs

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on slugify