smartypants 0.0.1
smartypants: ^0.0.1 copied to clipboard
A Dart package that provides text formatting similar to SmartyPants.
example/smartypants_example.dart
import 'package:smartypants/smartypants.dart';
void main() {
String input = '"Hello" -- world!';
String output = SmartyPants.formatText(input);
print(output); // Print: “Hello” – world!
}