packages feed

mustache 1.0.1 → 1.0.2

raw patch · 3 files changed

+9/−8 lines, 3 files

Files

mustache.cabal view
@@ -1,5 +1,5 @@ name:                mustache-version:             1.0.1+version:             1.0.2 synopsis:            A mustache template parser library. description:   Allows parsing and rendering template files with mustache markup. See the@@ -28,9 +28,9 @@  source-repository this   type:     git-  branch:   master+  branch:   export-fix   location: git://github.com/JustusAdam/mustache.git-  tag:      v1.0.1+  tag:      v1.0.2   
src/Text/Mustache/Parser.hs view
@@ -22,7 +22,7 @@    -- * Configurations -  , MustacheConf, defaultConf+  , MustacheConf(..), defaultConf    -- * Parser 
src/Text/Mustache/Types.hs view
@@ -16,10 +16,12 @@ module Text.Mustache.Types   (   -- * Types for the Parser / Template-    STree-  , Template(..)+    ASTree+  , STree   , Node(..)   , DataIdentifier(..)+  , Template(..)+  , TemplateCache   -- * Types for the Substitution / Data   , Value(..)   , Key@@ -30,7 +32,6 @@   -- ** Representation   , Array, Object, Pair   , Context(..)-  , TemplateCache   ) where  @@ -48,7 +49,7 @@ type STree = ASTree Text  -type ASTree α = [Node α] +type ASTree α = [Node α]   -- | Basic values composing the STree