press 0.1.1 → 0.1.2
raw patch · 2 files changed
+2/−4 lines, 2 filesdep ~base
Dependency ranges changed: base
Files
- Text/Press/Types.hs +0/−2
- press.cabal +2/−2
Text/Press/Types.hs view
@@ -65,8 +65,6 @@ data Expr = ExprStr String | ExprVar String | ExprNum Double- -- | ExprBinary Op Expr Expr - -- | ExprUnary Op Expr deriving (Ord, Eq, Show) type ParserState = (Parser, Template)
press.cabal view
@@ -1,5 +1,5 @@ Name: press-Version: 0.1.1+Version: 0.1.2 Synopsis: Text template library targeted at the web / HTML generation Description: Press is a general purpose text templating engine that is targeted at generating HTML / Web content. It uses the same syntax Django/Jinja templates use. Category: Text, Web@@ -12,5 +12,5 @@ Cabal-Version: >= 1.2 Library- Build-Depends: base >= 3 && < 5, containers, mtl, parsec >= 3.0.0, json+ Build-Depends: base >= 4 && < 5, containers, mtl, parsec >= 3.0.0, json Exposed-Modules: Text.Press.Render, Text.Press.Parser, Text.Press.Tags, Text.Press.Run, Text.Press.Types