-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Blaze-html support for servant
--   
--   Servant support for blaze-html
--   
--   <a>HTML</a> content type which will use <a>ToMarkup</a> class.
@package servant-blaze
@version 0.8


-- | An <tt>HTML</tt> empty data type with <a>MimeRender</a> instances for
--   <tt>blaze-html</tt>'s <a>ToMarkup</a> class and <a>Html</a> datatype.
--   You should only need to import this module for it's instances and the
--   <a>HTML</a> datatype.:
--   
--   <pre>
--   &gt;&gt;&gt; type Eg = Get '[HTML] a
--   </pre>
--   
--   Will then check that <tt>a</tt> has a <a>ToMarkup</a> instance, or is
--   <a>Html</a>.
module Servant.HTML.Blaze
data HTML
instance Servant.API.ContentTypes.Accept Servant.HTML.Blaze.HTML
instance Text.Blaze.ToMarkup a => Servant.API.ContentTypes.MimeRender Servant.HTML.Blaze.HTML a
