Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-10-07 | support parsing article date from directory names in addition to file name. | Takayuki Muranushi | 1 | -4/+8 | |
2014-09-08 | added binary instances for csl and pandoc, fix #174 | Jan-Philip Loos | 2 | -2/+37 | |
2014-08-25 | Don't have TagSoup decode any HTML entities | Jasper Van der Jeugt | 1 | -1/+10 | |
2014-08-20 | Fix compilation errors with pandoc-citeproc 0.4 | Rickard Nilsson | 1 | -1/+1 | |
2014-06-26 | Fix build failure introduced by 3ee6f28 | Simonas Kazlauskas | 1 | -1/+1 | |
Fixes #270 | |||||
2014-06-13 | Merge pull request #269 from co-dan/demoteheaders | Jasper Van der Jeugt | 1 | -0/+1 | |
Fix #223: `demoteHeaders` should not modify anything in the document, apart from the headers | |||||
2014-06-06 | Draft pagination | Jasper Van der Jeugt | 2 | -77/+89 | |
2014-05-20 | Fix issue in paginate dependencies | Jasper Van der Jeugt | 1 | -3/+3 | |
2014-05-10 | Allow Emacs org-mode as markup-language in *.org files | Albert Krewinkel | 1 | -0/+1 | |
This closes #231. | |||||
2014-05-09 | Merge branch 'master' of github.com:jaspervdj/hakyll | Jasper Van der Jeugt | 1 | -0/+1 | |
2014-04-19 | FIX: `toSiteRoot` no considers "./" to not be relavent. | Izzy Cecil | 1 | -0/+1 | |
2014-04-11 | Fix tag dependency issue, slightly improve caching | Jasper Van der Jeugt | 2 | -5/+8 | |
2014-02-16 | Fix #223: `demoteHeaders` should not modify anything in the document, apart ↵ | Daniil Frumin | 1 | -0/+1 | |
from the headers | |||||
2014-01-28 | Don't cache pandocCompilerWithTransform, refactor | Jasper Van der Jeugt | 1 | -10/+9 | |
2014-01-26 | Typo in Pandoc.hs | Dan | 1 | -1/+1 | |
2014-01-24 | Added the `pandocCompilerWithTransformM` function | Daniil Frumin | 1 | -0/+16 | |
2014-01-19 | Add IsString instance for Template | Jasper Van der Jeugt | 4 | -101/+94 | |
Closes #150 | |||||
2014-01-19 | Fix escaped quotes + wording | Daniil Frumin | 1 | -3/+3 | |
2014-01-19 | Documentation for the template macros | Daniil Frumin | 1 | -0/+83 | |
2014-01-12 | Haddocks for `field`, `constField`, `bodyField`, and `titleField` in ↵ | Daniil Frumin | 1 | -2/+8 | |
Web.Template.Context | |||||
2014-01-11 | Added documentation for 'Context' and 'defaultField' | Daniil Frumin | 1 | -0/+25 | |
2013-09-29 | Enable Pandoc highlighting by default | Jasper Van der Jeugt | 1 | -0/+3 | |
2013-09-18 | updated to work with pandoc 1.12 | Jorge Israel Peña | 1 | -9/+6 | |
Pandoc 1.12 decouples citeproc-hs from itself, so there is no longer a Text.Pandoc.Biblio module in Pandoc. Further, citeproc-hs depends on pandoc-types 1.10 but Pandoc 1.12 depends on pandoc-types 1.12. To alleviate these issues, pandoc-citeproc was created which includes a copy of the citeproc-hs source made to be compatible, since the developer of citeproc-hs is apparently MIA. pandoc-citeproc is a separate module that handles the mixture of citeproc-hs and Pandoc. It includes `processCites` in Text.CSL.Pandoc, which is the new name of what used to be `processBiblio` from Text.Pandoc.Biblio Most of these changes are seamless, consisting of simple name changes in both functions and modules. However, a more direct change in the Hakyll API itself is that `readPandocBiblio`'s second parameter, the CSL, is now mandatory, i.e. not of type Maybe. This is to reflect the same change in the underlying processing function from Text.CSL.Pandoc, `processCites`, where the Style argument is now mandatory, and the style is derived from the CSL. See the old function: processBiblio :: Maybe Style -> [Reference] -> Pandoc -> Pandoc Compared to the new one: processCites :: Style -> [Reference] -> Pandoc -> Pandoc Sources: * http://hackage.haskell.org/packages/archive/pandoc/1.11.1/doc/html/Text-Pandoc-Biblio.html * http://hackage.haskell.org/packages/archive/pandoc-citeproc/0.1/doc/html/Text-CSL-Pandoc.html Similarly, there is no longer a `readerReferences` field in the reader options structure. | |||||
2013-09-16 | Fix incorrect output of toSiteRoot on Windows. | Saeid Al-Wazzan | 1 | -1/+1 | |
toSiteRoot uses splitPath, joinPath, and takeDirectory from the System.FilePath module. On Windows systems, the implementation of joinPath will build up a path using the Windows path separator "\\". We don't want this behavior since the paths we are working with are always URLs, so we force POSIX behavior for System.FilePath. | |||||
2013-08-16 | Change type: metadataField :: Context a | Jasper Van der Jeugt | 1 | -1/+1 | |
Closes #175 | |||||
2013-08-13 | Explode when using mapContext over ListField | Jasper Van der Jeugt | 1 | -3/+5 | |
2013-08-10 | Add functionField again | Jasper Van der Jeugt | 2 | -1/+11 | |
2013-08-05 | Add mapContext again | Jasper Van der Jeugt | 1 | -1/+11 | |
2013-06-17 | Only add teaser when <!--more--> is there | Jasper Van der Jeugt | 1 | -3/+7 | |
2013-06-16 | Make toUri sanitise all characters needed | Simonas Kazlauskas | 1 | -4/+6 | |
2013-06-15 | Sanitize URLs in toUrl | Jasper Van der Jeugt | 1 | -2/+10 | |
Closes #163 | |||||
2013-06-06 | teaserContext -> teaserField | Jasper Van der Jeugt | 1 | -11/+13 | |
2013-05-07 | Add partials to template system | Jasper Van der Jeugt | 3 | -5/+36 | |
2013-05-06 | Implement foreach structure | Jasper Van der Jeugt | 5 | -43/+78 | |
2013-05-06 | Paginate simplification | Jasper Van der Jeugt | 2 | -206/+134 | |
2013-05-05 | Added pagination support. | Anton Dubovik | 1 | -0/+206 | |
2013-05-04 | Changed the teaser separator to "more" to use the same format as WordPress does. | Ivan N. Veselov | 1 | -1/+1 | |
2013-05-04 | Added a comment explaining "teaserContext" function. | Ivan N. Veselov | 1 | -0/+3 | |
2013-05-04 | Added "teasers" support to be used in posts index. | Ivan N. Veselov | 1 | -1/+13 | |
Just add "<!-- teaser_end -->" to separate the teaser and the rest of the article and use "$teaser$" key in the template! Closes issue #35. | |||||
2013-05-04 | Style changes, move stuff to common parser module | Jasper Van der Jeugt | 3 | -45/+47 | |
2013-05-03 | Removed unnecessary import. | Ivan N. Veselov | 1 | -1/+1 | |
2013-05-03 | Added support for "$if$" statement in templates. | Ivan N. Veselov | 3 | -40/+67 | |
2013-04-29 | Merge pull request #138 from christopheryoung/master | Jasper Van der Jeugt | 1 | -1/+1 | |
Documentation tweaks: two small typos and $PATH variable documentation for OS X | |||||
2013-04-23 | Adding in the short form date parsing | Parnell Springmeyer | 1 | -0/+1 | |
2013-04-22 | Micro cleanup | Jasper Van der Jeugt | 1 | -10/+8 | |
2013-04-22 | Merge pull request #133 from simukis/scheme-relative | Jasper Van der Jeugt | 1 | -1/+1 | |
Account for scheme-relative URLs | |||||
2013-04-21 | Fix indent | Ian Ross | 1 | -1/+1 | |
2013-04-21 | Improve tag handling API | Ian Ross | 1 | -24/+97 | |
Expose function tagsFieldWith and renderTagCloudWith to provide more flexible tag rendering APIs; add tagCloudField and tagCloudFieldWith to provide context-based facility for tag cloud rendering. | |||||
2013-04-21 | Add "data" as a URL attribute | Ian Ross | 1 | -1/+1 | |
2013-04-12 | Fix typo | Christopher Young | 1 | -1/+1 | |