Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-10-04 | Separate pandoc from page reading, general caching | Jasper Van der Jeugt | 1 | -60/+37 | |
2010-10-02 | Disable partial functions (thanks chrisdone) | Jasper Van der Jeugt | 1 | -3/+3 | |
2010-06-20 | Add newtype for Context | Jasper Van der Jeugt | 1 | -2/+2 | |
2010-06-18 | Allow markdown/tex/... in templates | Jasper Van der Jeugt | 1 | -2/+3 | |
2010-05-20 | Expose pandoc options (patch by JD Marble). | Jasper Van der Jeugt | 1 | -27/+14 | |
2010-04-04 | Added fix to allow dashes in pages. | Jasper Van der Jeugt | 1 | -10/+20 | |
Hakyll splits pages into metadata sections by lines starting with `---`. Because of this, thing like Header ------ Some text. will not parse. This commit fixes this, by fixating the length of the the dash pattern -- all dashed lines should contain the same number of dashes. Therefor, you can use something like --- title: Foobar --- Header ------ Some text. | |||||
2010-03-26 | Fixed error when rendering literate Haskell. | Jasper Van der Jeugt | 1 | -4/+5 | |
Literate haskell was not listed in the pattern matching on FileType's, so it gave an error that the file type could not be rendered. This was quickly resolved by adding it to the list. | |||||
2010-03-26 | Added `.txt` support, tests update. | Jasper Van der Jeugt | 1 | -0/+1 | |
- Pure text files are now supported. - We now hide the Internal modules. - Tests should be run through ghci. - Added testing of page reading. | |||||
2010-03-11 | Moved some modules around for fun and profit. | Jasper Van der Jeugt | 1 | -1/+1 | |
2010-03-08 | Added Text.Hakyll.Internal.FileType module. | Jasper Van der Jeugt | 1 | -11/+13 | |
2010-03-05 | Fixed bug in date rendering. | Jasper Van der Jeugt | 1 | -1/+2 | |
2010-03-05 | Removed deprecated code. | Jasper Van der Jeugt | 1 | -47/+1 | |
2010-03-04 | Fixed url inclusion bug. Brochure example works now. | Jasper Van der Jeugt | 1 | -4/+6 | |
2010-03-04 | Got it to compile again, disabled Tags for now. | Jasper Van der Jeugt | 1 | -19/+0 | |
2010-03-04 | Work on migration to arrows. Compulation fails. | Jasper Van der Jeugt | 1 | -0/+181 | |
- Update readPage to produce a Hakyll Context. - Update createPagePath to produce a Context Arrow. - Move Page to internal modules. |