blaze-html-0.2.4.0: A blazingly fast HTML combinator library.

Text.Blaze

Contents

Description

BlazeHtml is an HTML combinator library. It provides a way to embed HTML in Haskell in an efficient and convenient way, with a light-weight syntax.

To use the library, one needs to import a set of HTML combinators. For example, you can use HTML 4 Strict.

 {-# LANGUAGE OverloadedStrings #-}
 import Prelude hiding (head, id, div)
 import Text.Blaze.Html4.Strict hiding (map)
 import Text.Blaze.Html4.Strict.Attributes hiding (title)

To render the page later on, you need a so called Renderer. The recommended renderer is an UTF-8 renderer which produces a lazy bytestring.

 import Text.Blaze.Renderer.Utf8 (renderHtml)

Now, you can describe pages using the imported combinators.

 page1 :: Html
 page1 = html $ do
 	head $ do
		title "Introduction page."
		link ! rel "stylesheet" ! type_ "text/css" ! href "screen.css"
	body $ do
 		div ! id "header" $ "Syntax"
 		p "This is an example of BlazeHtml syntax."
		ul $ forM_ [1, 2, 3] (li . string . show)

The resulting HTML can now be extracted using:

 renderHtml page1

Synopsis

Important types.

type Html = HtmlM ()Source

Simplification of the HtmlM datatype.

data Tag Source

Type for an HTML tag. This can be seen as an internal string type used by BlazeHtml.

Instances

data Attribute Source

Type for an attribute.

data AttributeValue Source

The type for the value part of an attribute.

Creating attributes.

dataAttributeSource

Arguments

:: Tag

Name of the attribute.

-> AttributeValue

Value for the attribute.

-> Attribute

Resulting HTML attribute.

From HTML 5 onwards, the user is able to specify custom data attributes.

An example:

 <p data-foo="bar">Hello.</p>

We support this in BlazeHtml using this funcion. The above fragment could be described using BlazeHtml with:

 p ! dataAttribute "foo" "bar" $ "Hello."

Converting values to HTML.

textSource

Arguments

:: Text

Text to render.

-> Html

Resulting HTML fragment.

Render text. Functions like these can be used to supply content in HTML.

preEscapedTextSource

Arguments

:: Text

Text to insert.

-> Html 

Render text without escaping.

stringSource

Arguments

:: String

String to insert.

-> Html

Resulting HTML fragment.

Create an HTML snippet from a String.

preEscapedStringSource

Arguments

:: String

String to insert.

-> Html

Resulting HTML fragment.

Create an HTML snippet from a String without escaping

showHtmlSource

Arguments

:: Show a 
=> a

Value to insert.

-> Html

Resulting HTML fragment.

Create an HTML snippet from a datatype that instantiates Show.

preEscapedShowHtmlSource

Arguments

:: Show a 
=> a

Value to insert.

-> Html

Resulting HTML fragment.

Create an HTML snippet from a datatype that instantiates Show. This function will not do any HTML entity escaping.

unsafeByteStringSource

Arguments

:: ByteString

Value to insert.

-> Html

Resulting HTML fragment.

Insert a ByteString. This is an unsafe operation:

  • The ByteString could have the wrong encoding.
  • The ByteString might contain illegal HTML characters (no escaping is done).

Creating tags.

textTagSource

Arguments

:: Text

Text to create a tag from

-> Tag

Resulting tag

Create a Tag from some Text.

stringTagSource

Arguments

:: String

String to create a tag from

-> Tag

Resulting tag

Create a Tag from a String.

Converting values to attribute values.

textValueSource

Arguments

:: Text

The actual value.

-> AttributeValue

Resulting attribute value.

Render an attribute value from Text.

preEscapedTextValueSource

Arguments

:: Text

Text to insert.

-> AttributeValue 

Render an attribute value from Text without escaping.

stringValue :: String -> AttributeValueSource

Create an attribute value from a String.

preEscapedStringValue :: String -> AttributeValueSource

Create an attribute value from a String without escaping.

unsafeByteStringValueSource

Arguments

:: ByteString

ByteString value

-> AttributeValue

Resulting attribute value

Create an attribute value from a ByteString. See unsafeByteString for reasons why this might not be a good idea.

Setting attributes

(!) :: Attributable h => h -> Attribute -> hSource

Apply an attribute to an element.

Example:

 img ! src "foo.png"

Result:

 <img src="foo.png" />

This can be used on nested elements as well.

Example:

 p ! style "float: right" $ "Hello!"

Result:

 <p style="float: right">Hello!</p>