blaze-markup-0.8.2.2: A blazingly fast markup combinator library for Haskell

Safe HaskellNone
LanguageHaskell98

Text.Blaze.Renderer.Text

Description

A renderer that produces a lazy Text value, using the Text Builder.

Synopsis

Documentation

renderMarkupBuilder :: Markup -> Builder #

Render markup to a text builder

renderMarkupBuilderWith #

Arguments

:: (ByteString -> Text)

Decoder for bytestrings

-> Markup

Markup to render

-> Builder

Resulting builder

Render some Markup to a Text Builder.

renderMarkup :: Markup -> Text #

Render markup to a lazy Text value. If there are any ByteString's in the input markup, this function will consider them as UTF-8 encoded values and decode them that way.

renderMarkupWith #

Arguments

:: (ByteString -> Text)

Decoder for ByteString's.

-> Markup

Markup to render

-> Text 

Render markup 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...

renderHtmlBuilder :: Markup -> Builder #

Deprecated: Use renderHtmlBuilder from Text.Blaze.Html.Renderer.Text instead

renderHtmlBuilderWith #

Arguments

:: (ByteString -> Text)

Decoder for bytestrings

-> Markup

Markup to render

-> Builder

Resulting builder

Deprecated: Use renderHtmlBuilderWith from Text.Blaze.Html.Renderer.Text instead

renderHtml :: Markup -> Text #

Deprecated: Use renderHtml from Text.Blaze.Html.Renderer.Text instead

renderHtmlWith #

Arguments

:: (ByteString -> Text)

Decoder for ByteString's.

-> Markup

Markup to render

-> Text

Resulting lazy text

Deprecated: Use renderHtmlWith from Text.Blaze.Html.Renderer.Text instead