-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | A QuasiQuoter for Text.
--
-- A QuasiQuoter for interpolating values into Text strings.
@package QuasiText
@version 0.1.2.2
-- | A simple QuasiQuoter for Text strings. Note that to use
-- embed you need to use the OverloadedStrings extension.
module Text.QuasiText
-- | A simple QuasiQuoter to interpolate Text into other
-- pieces of Text. Expressions can be embedded using $(...) or
-- $..., $... will only work for one-word expressions (best suited for
-- just variable substitution), but $(...) will work for anything..
embed :: QuasiQuoter
data Chunk
T :: Text -> Chunk
E :: Text -> Chunk
V :: Text -> Chunk
-- | Create Chunks without any TH.
getChunks :: Text -> [Chunk]
instance [incoherent] Show Chunk
instance [incoherent] Eq Chunk
instance [incoherent] Show a => Textish a
instance [incoherent] Textish [Char]
instance [incoherent] Textish Text
instance [incoherent] Lift Text