9add8d174f
* 0.4.1.0 - Gain compatibility with the Semigroup/Monoid proposal - Add Word8 HTML escaping builders - Speed up `fromHtmlEscapedText` and `fromHtmlEscapedLazyText` * 0.4.0.2 - Fixed warnings on GHC 7.10, courtesy of Mikhail Glushenkov. * 0.4.0.1 - Tightened the version constraints on the bytestring package for GHC 7.8 * 0.4.0.0 - This is now a compatibility shim for the new bytestring builder. Most of the old internal modules are gone. See this blog post for more information: <http://blog.melding-monads.com/2015/02/12/announcing-blaze-builder-0-4/> - The 'Blaze.ByteString.Builder.Html.Utf8.fromHtmlEscaped*' functions now strip out any ASCII control characters present in their inputs. See <https://github.com/lpsmith/blaze-builder/issues/1> for more information.
13 lines
638 B
Text
13 lines
638 B
Text
This library provides an implementation of the older blaze-builder
|
|
interface in terms of the new builder that shipped with
|
|
bytestring-0.10.4.0
|
|
|
|
This implementation is mostly intended as a bridge to the new builder,
|
|
so that code that uses the old interface can interoperate with code
|
|
that uses the new implementation. Note that no attempt has been made
|
|
to preserve the old internal modules, so code that has these
|
|
dependencies cannot use this interface.
|
|
|
|
New code should, for the most part, use the new interface. However,
|
|
this module does implement a chunked HTTP encoding, which is not
|
|
otherwise implemented (yet?) with the new builder.
|