haiku 1.0.5 copy "haiku: ^1.0.5" to clipboard
haiku: ^1.0.5 copied to clipboard

outdatedDart 1 only

Detect and create Hiakus from plain text.

Haiku #

Detect and create Haikus

Examples #

Detecting a haiku

final poem = '''
   This is my long poem. It is too long for haiku, because it's tail is quite large.
''';

final haikuPoem = '''
    An old silent pond... A frog jumps into the pond, splash! Silence again.
''';

print(Haiku.isHaiku(poem); // False; 19 syllables
print(Haiku.isHaiku(haikuPoem); // True

Creating a Haiku

final haiku = Haiku.create(haikuPoem);
print(haiku.firstLine); // ['An', 'old', 'silent', 'pond...'];
print(haiku.thirdLine); // ['splash!', 'Silence', 'again.'];

Printing a Haiku

print(const CitationFormatter('You').format(haiku));

//  *An old silent pond...
//  A frog jumps into the pond,
//  splash! Silence again.*
//      - You
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Detect and create Hiakus from plain text.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta, packages

More

Packages that depend on haiku