-- | A host of HTML5 functions to make writing HTML5 with blaze-html
-- practical.
--
-- Common imports to make:
--
-- > import Blaze
-- > import Blaze.Elements as E
-- > import Blaze.Attributes as A
-- > import Blaze.Bootstrap

module Blaze
  (-- * Main library
   module Blaze.Html5
  -- * Rendering
  ,renderHtml)
  where

import Blaze.Html5
import Text.Blaze.Html.Renderer.Text (renderHtml)