From 9b3babe142e36e96d2ffcbf2ec5b22346c54c3d9 Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Fri, 4 Dec 2009 13:20:35 +0100 Subject: [PATCH] Cabal changes. --- LICENSE | 31 +++++++++++++++++++++++++++++++ README.markdown | 10 +++++----- Setup.hs | 2 ++ hakyll.cabal | 3 +++ 4 files changed, 41 insertions(+), 5 deletions(-) create mode 100644 LICENSE create mode 100644 Setup.hs diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..627e973 --- /dev/null +++ b/LICENSE @@ -0,0 +1,31 @@ +Copyright (c) 2009, Jasper Van der Jeugt +  +All rights reserved. +  +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: +  +    * Redistributions of source code must retain the above copyright +      notice, this list of conditions and the following disclaimer. +  +    * Redistributions in binary form must reproduce the above +      copyright notice, this list of conditions and the following +      disclaimer in the documentation and/or other materials provided +      with the distribution. +  +    * Neither the name of Jasper Van der Jeugt nor the names of other +      contributors may be used to endorse or promote products derived +      from this software without specific prior written permission. +  +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.markdown b/README.markdown index 6a6cf7c..d1df2ef 100644 --- a/README.markdown +++ b/README.markdown @@ -37,9 +37,9 @@ recursively. ## Pages -Pages can be written in html or markdown (altough it would be a trivial task -to add anything pandoc supports, just ask me if you want anything to be added). -They can also contain metadata, which are always key-value mappings. +Pages can be written in html, markdown, LaTeX, and basically anything +pandoc supports. They can also contain metadata, which are always key-value +mappings. --- author: Jasper Van der Jeugt @@ -57,8 +57,8 @@ They can also contain metadata, which are always key-value mappings. Metadata is always placed in the beginning of a file, and is delimited by a `---` string. The metadata can only contain simple key-value pairs. We can now read in this page using the `Text.Hakyll.Page.readPage` function. This -will return a `Page`, which is actually just a `Map String String`. In this -example, the map would consist of the following key-value pairs: +will return a `Page`, which is actually just a `Map String ByteString`. In +this example, the map would consist of the following key-value pairs: - `author`: `Jasper Van der Jeugt` - `title`: `A sample markdown post` diff --git a/Setup.hs b/Setup.hs new file mode 100644 index 0000000..9a994af --- /dev/null +++ b/Setup.hs @@ -0,0 +1,2 @@ +import Distribution.Simple +main = defaultMain diff --git a/hakyll.cabal b/hakyll.cabal index 522e3c3..2810446 100644 --- a/hakyll.cabal +++ b/hakyll.cabal @@ -7,6 +7,9 @@ Description: blogs. Author: Jasper Van der Jeugt Maintainer: jaspervdj@gmail.com +License: BSD3 +License-File: LICENSE +Category: Text Cabal-Version: >= 1.2 build-type: Simple