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 /README.markdown | |
parent | cd90c29c18cdca463dcdc8191b5ba0e0478cd64c (diff) | |
download | hakyll-9b3babe142e36e96d2ffcbf2ec5b22346c54c3d9.tar.gz |
Cabal changes.
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 10 |
1 files changed, 5 insertions, 5 deletions
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` |