Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-04-03 | Merge pull request #342 from NorfairKing/general-teaser-seperator | Jasper Van der Jeugt | 1 | -2/+12 | |
Added support for a custom teaser separator | |||||
2015-03-30 | change file extension to .dbk for docbook | Joshua Simmons | 1 | -2/+1 | |
2015-03-30 | Added support for a custom teaser separator | Tom Sydney Kerckhove | 1 | -2/+12 | |
This way you don't need to use the <!--more--> separator. You can define your own. | |||||
2015-03-23 | let pandoc handle DocBook files | Joshua Simmons | 2 | -0/+4 | |
2015-02-20 | Add author name by default to RSS feeds | Calen Pennington | 1 | -0/+2 | |
2015-01-13 | Add boolField | Ferenc Wágner | 1 | -1/+13 | |
2015-01-09 | fix typo | Matthias C. M. Troffaes | 1 | -1/+1 | |
2015-01-09 | add horizontal rule before function | Matthias C. M. Troffaes | 1 | -0/+1 | |
2015-01-09 | add missing export | Matthias C. M. Troffaes | 1 | -0/+1 | |
2015-01-09 | add convenience function pandocBiblioCompiler | Matthias C. M. Troffaes | 1 | -1/+10 | |
2014-10-29 | Add listFieldWith | Jasper Van der Jeugt | 1 | -1/+8 | |
2014-10-27 | Better functions in templates | Jasper Van der Jeugt | 4 | -59/+153 | |
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 | |