name: unicoder version: 0.5.0 stability: beta synopsis: Make writing in unicode easy. description: Unicoder is a command-line tool transforms text documents, replacing simple patterns with unicode equivalents. The patterns can be easily configured by the user. This package is especially meant to open the vast and expressive array of unicode identifiers to programmers and language designers, but there's nothing wrong with a technically savvy user putting unicoder to work on documents for human consumption. Any system of special characters can be made easy to type on any keyboard and in any context as long as unicode supports it. . Cabal wants to fight me over typesetting some examples, so check out for a decent look at the features. . In the interests of giving readers /some/ idea whats going on, with the default settings, . > \E.x. \A.y. x \-> y > \l.x,y. x \of x \of y . becomes . > ∃x ∀y x → y > λx,y. x ∘ x ∘ y . except that the newline isn't removed (thanks, cabal!). Also, there are a couple important features that I can't seem to get cabal to even parse (thanks again!). license: BSD3 license-file: LICENSE copyright: Copyright © 2013, 2014, Okuno Zankoku author: Zankoku Okuno maintainer: zankoku.okuno@gmail.com homepage: https://github.com/Zankoku-Okuno/unicoder bug-reports: https://github.com/Zankoku-Okuno/unicoder/issues category: Text build-type: Simple cabal-version: >=1.10 data-dir: data data-files: *.conf extra-source-files: README.md, changes.md, test/*.in, test/*.out, test/test.config library hs-source-dirs: src exposed-modules: Text.Unicoder build-depends: attoparsec >=0.10.0.0, base >=4.8 && <5, directory ==1.*, filepath ==1.*, text >=0.11 && <2 default-language: Haskell2010 default-extensions: OverloadedStrings executable unicoder hs-source-dirs: app main-is: unicoder.hs other-modules: Paths_unicoder build-depends: base, data-default >=0.5, directory, filepath, text, twitch ==0.1.7.*, unicoder default-language: Haskell2010 default-extensions: OverloadedStrings test-suite test-unicoder hs-source-dirs: test type: exitcode-stdio-1.0 main-is: test.hs build-depends: base, text, unicoder default-language: Haskell2010 default-extensions: OverloadedStrings source-repository head type: git location: https://github.com/Zankoku-Okuno/unicoder.git