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


-- | QuasiQuoter for non-interpolated strings, texts and bytestrings.
--   
--   QuasiQuoter for non-interpolated strings, texts and bytestrings,
--   useful for writing multi-line IsString literals.
@package string-qq
@version 0.0.6


-- | QuasiQuoter for non-interpolated strings, texts and bytestrings.
--   
--   The "s" quoter contains a multi-line string with no interpolation at
--   all, except that the leading newline is trimmed and carriage returns
--   stripped.
--   
--   <pre>
--   {-# LANGUAGE QuasiQuotes #-}
--   import Data.Text (Text)
--   import Data.String.QQ
--   foo :: Text -- <a>String</a>, <a>ByteString</a> etc also works
--   foo = [s|
--   Well here is a
--       multi-line string!
--   |]
--   </pre>
--   
--   Any instance of the IsString type is permitted.
--   
--   (For GHC versions 6, write "[$s||]" instead of "[s||]".)
module Data.String.QQ

-- | QuasiQuoter for a non-interpolating IsString literal. The pattern
--   portion is undefined.
s :: QuasiQuoter
