pretty: Pretty-printing library

[ bsd3, library, text ] [ Propose Tags ]

This package contains a pretty-printing library, a set of API's that provides a way to easily print out text in a consistent format of your choosing. This is useful for compilers and related tools.

This library was originally designed by John Hughes's and has since been heavily modified by Simon Peyton Jones.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 1.0.0.0, 1.0.1.0, 1.0.1.1, 1.0.1.2, 1.1.0.0, 1.1.1.0, 1.1.1.1, 1.1.1.2, 1.1.1.3, 1.1.2.0, 1.1.2.1, 1.1.3.1, 1.1.3.2, 1.1.3.3, 1.1.3.4, 1.1.3.5, 1.1.3.6
Change log CHANGELOG.md
Dependencies base (>=4.5 && <5), deepseq (>=1.1), ghc-prim [details]
License BSD-3-Clause
Author
Maintainer David Terei <code@davidterei.com>
Category Text
Home page http://github.com/haskell/pretty
Bug tracker http://github.com/haskell/pretty/issues
Source repo this: git clone http://github.com/haskell/pretty.git(tag 1.1.3.5)
head: git clone http://github.com/haskell/pretty.git
Uploaded by DavidTerei at 2018-01-29T04:01:01Z
Distributions Arch:1.1.3.6, Fedora:1.1.3.6
Reverse Dependencies 441 direct, 14198 indirect [details]
Downloads 40827 total (83 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2018-01-29 [all 1 reports]

Readme for pretty-1.1.3.6

[back to package description]

Pretty : A Haskell Pretty-printer library

Hackage Hackage Dependencies BSD3 License Build

Pretty is a pretty-printing library, a set of API's that provides a way to easily print out text in a consistent format of your choosing. This is useful for compilers and related tools.

It is based on the pretty-printer outlined in the paper 'The Design of a Pretty-printing Library' by John Hughes in Advanced Functional Programming, 1995. It can be found here.

Licensing

This library is BSD-licensed.

Building

The library uses the Cabal build system, so building is simply a matter of running:

cabal sandbox init
cabal install "QuickCheck >= 2.5 && < 3"
cabal install --only-dependencies
cabal configure --enable-tests
cabal build
cabal test

We have to install QuickCheck manually as otherwise Cabal currently throws an error due to the cyclic dependency between pretty and QuickCheck.

If cabal test freezes, then run cabal test --show-details=streaming instead. This is due to a bug in certain versions of Cabal.

Get involved!

We are happy to receive bug reports, fixes, documentation enhancements, and other improvements.

Please report bugs via the github issue tracker.

Master git repository:

  • git clone git://github.com/haskell/pretty.git

Authors

This library is maintained by David Terei, code@davidterei.com. It was originally designed by John Hughes's and since heavily modified by Simon Peyton Jones.