diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2009-12-04 13:20:35 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2009-12-04 13:20:35 +0100 |
commit | 9b3babe142e36e96d2ffcbf2ec5b22346c54c3d9 (patch) | |
tree | b99f31748c177314f261dbae959ec7ce809d1bdf | |
parent | cd90c29c18cdca463dcdc8191b5ba0e0478cd64c (diff) | |
download | hakyll-9b3babe142e36e96d2ffcbf2ec5b22346c54c3d9.tar.gz |
Cabal changes.
-rw-r--r-- | LICENSE | 31 | ||||
-rw-r--r-- | README.markdown | 10 | ||||
-rw-r--r-- | Setup.hs | 2 | ||||
-rw-r--r-- | hakyll.cabal | 3 |
4 files changed, 41 insertions, 5 deletions
@@ -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 |