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


-- | Obtain minified jquery.dgtable code
--   
--   This package bundles the minified <a>jquery.dgtable</a> code into a
--   Haskell package, so it can be depended upon by Cabal packages. The
--   first three components of the version number match the upstream
--   jquery.dgtable version. The package is designed to meet the
--   redistribution requirements of downstream users (e.g. Debian).
@package js-dgtable
@version 0.5.2


-- | Module for accessing minified jquery.dgtable code
--   (<a>https://github.com/danielgindi/jquery.dgtable/</a>). As an
--   example:
--   
--   <pre>
--   import qualified Language.Javascript.DGTable as DGTable
--   
--   main = do
--       putStrLn $ "jquery.dgtable version " ++ show DGTable.version ++ " source:"
--       putStrLn =&lt;&lt; readFile =&lt;&lt; DGTable.file
--   </pre>
--   
--   This package installs data files containing the jquery.dgtable
--   sources, which must be available at runtime. If you want to produce an
--   executable with no dependency on associated data files, you can use
--   the <tt>file-embed</tt> library
--   (<a>https://hackage.haskell.org/package/file-embed</a>):
--   
--   <pre>
--   {-# LANGUAGE TemplateHaskell #-}
--   
--   import Data.FileEmbed
--   import qualified Data.ByteString as BS
--   import qualified Language.Javascript.DGTable as DGTable
--   import Language.Haskell.TH.Syntax
--   
--   main = print dgTableContents
--   
--   dgTableContents :: BS.ByteString
--   dgTableContents = $(embedFile =&lt;&lt; runIO DGTable.file)
--   </pre>
module Language.Javascript.DGTable

-- | The version of jquery.dgtable provided by this package. Not
--   necessarily the version of this package, but the versions will match
--   in the first three digits.
version :: Version

-- | A local file containing the minified jquery.dgtable code for
--   <a>version</a>.
file :: IO FilePath
