Text.Blaze.Renderer.Text
Description
A renderer that produces a lazy Text value, using the Text Builder.
- renderHtml :: Html -> Text
 - renderHtmlWith :: (ByteString -> Text) -> Html -> Text
 
Documentation
Render HTML to a lazy Text value. If there are any ByteString's in the input HTML, this function will consider them as UTF-8 encoded values and decode them that way.
Arguments
| :: (ByteString -> Text) | Decoder for ByteString's.  | 
| -> Html | HTML to render  | 
| -> Text | 
Render HTML to a lazy Text value. This function allows you to specify what should happen with ByteString's in the input HTML. You can decode them or drop them, this depends on the application...