name: hyphenation category: Text version: 0.2.1 license: BSD3 cabal-version: >= 1.6 license-file: LICENSE author: Edward A. Kmett maintainer: Edward A. Kmett stability: provisional homepage: http://github.com/ekmett/hyphenation copyright: (C) 2012 Edward A. Kmett synopsis: Configurable Knuth-Liang hyphenation description: Configurable Knuth-Liang hyphenation . Uses the UTF8 encoded hyphenation patterns provided by hyph-utf8 from . Usage: . > ghci> hyphenate english_US "supercalifragilisticexpialadocious" > ["su","per","cal","ifrag","ilis","tic","ex","pi","al","ado","cious"] . > ghci> hyphenate english_US "hyphenation" > ["hy","phen","ation"] . > ghci> hyphenate icelandic "vaðlaheiðavegavinnuverkfærageymsluskúr" > ["va\240la","hei\240a","vega","vinnu","verk","f\230ra","geymslu","sk\250r"] build-type: Simple data-dir: data data-files: *.hyp.txt, *.pat.txt, *.lic.txt, *.chr.txt source-repository head type: git location: git://github.com/ekmett/hyphenation.git library build-depends: base >= 4 && < 5, containers >= 0.3.0.0 && < 0.5, unordered-containers >= 0.2.1 && < 0.3 exposed-modules: Text.Hyphenation Text.Hyphenation.Hyphenator Text.Hyphenation.Language Text.Hyphenation.Exception Text.Hyphenation.Pattern other-modules: Paths_hyphenation ghc-options: -Wall