blazeT 0.0.3 → 0.0.4
raw patch · 2 files changed
+5/−7 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Text.BlazeT: preEscapedToValue :: ToValue a => a -> AttributeValue
+ Text.BlazeT: preEscapedToValue :: a -> AttributeValue
- Text.BlazeT: toValue :: ToValue a => a -> AttributeValue
+ Text.BlazeT: toValue :: a -> AttributeValue
Files
- README.md +4/−6
- blazeT.cabal +1/−1
README.md view
@@ -13,13 +13,11 @@ ## What’s wrong with blaze? -blaze’s `Markup` and `Html` **cannot be used as Monads**, let alone Monad transformers.+Blaze’s `Markup` and `Html` **cannot be used as Monads**, let alone Monad transformers. While blaze's `Markup` and `Html` types have `Monad` instances and can-leverage the concise `do` notation, they do not satisfy-the-[Monad Laws](https://hackage.haskell.org/package/base-4.8.0.0/docs/Control-Monad.html#t:Monad) and-thus cannot be used as Monads, let alone Monad transformers.+leverage the concise `do` notation, they do not satisfy the+[Monad Laws](https://hackage.haskell.org/package/base-4.8.0.0/docs/Control-Monad.html#t:Monad). ## How do Monads help? - Use Cases @@ -47,7 +45,7 @@ ## Usage -### Integrating with your Existing Code+### Integrating with your existing code The library is intended to serve as a drop-in replacement for the `blaze-markup` and `blaze-html` libraries and should be backwards
blazeT.cabal view
@@ -1,5 +1,5 @@ Name: blazeT-Version: 0.0.3+Version: 0.0.4 Homepage: Bug-Reports: http://github.com/johannesgerer/blazeT/issues License: MIT