summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-01-12Merge pull request #204 from hh-darkfox/patch-1Jasper Van der Jeugt1-1/+1
Updated darkfox.us.to to darkfox.id.au+SSL
2014-01-11Merge pull request #206 from co-dan/docpatchesJasper Van der Jeugt1-0/+25
Added documentation for 'Context' and 'defaultField'
2014-01-11Added documentation for 'Context' and 'defaultField'Daniil Frumin1-0/+25
2014-01-06Merge pull request #205 from co-dan/patch-1Jasper Van der Jeugt1-0/+2
Updated examples.markdown with a link to my site
2014-01-06Updated examples.markdown with a link to my siteDan1-0/+2
2014-01-05Updated darkfox.us.to to darkfox.id.au+SSLhh-darkfox1-1/+1
2014-01-03Merge pull request #202 from adelbertc/fix-syntax-cssJasper Van der Jeugt1-13/+13
Fix issue with syntax highlighting + line nums.
2014-01-03Merge pull request #203 from freizl/masterJasper Van der Jeugt1-0/+2
Add haisheng personal blog
2014-01-03Version bump (4.4.3.0)Jasper Van der Jeugt2-1/+5
2014-01-03Fix issue with metadataRoute for composed routesJasper Van der Jeugt1-5/+13
2014-01-03Add a test for metadataRouteJasper Van der Jeugt2-2/+11
2014-01-02Add haisheng personal blogHaisheng.W.WU1-0/+2
2014-01-01Fix issue with syntax highlighting + line nums.Adelbert Chang1-13/+13
Below is the generated HTML for with line numbers and without line numbers, respectively. ```html <!-- Without line numbers --> <pre class="sourceCode scala"> <code class="sourceCode scala"> <span class="kw">trait</span> Monad[M[_]] </code> </pre> <!-- With line numbers --> <table class="sourceCode scala numberLines"> <tr class="sourceCode"> <td class="lineNumbers"> <pre>1</pre> </td> <td class="sourceCode"> <pre> <code class="sourceCode scala"> <span class="kw">trait</span> Monad[M[_]] </code> </pre> </td> </tr> </table> ``` The markdown used is: ``` ~~~~ { .scala } trait Monad[M[_]] ~~~~ ~~~~ { .scala .numberLines} trait Monad[M[_]] ~~~~ ``` Notice that without line numbers the outer `pre` has a `sourceCode` class whereas with line numbers the `sourceCode` class is only put in `code` and table-related tags. In the original `syntax.css` file synax highlighting was only triggered if the `kw` and friends tags were within a `pre.sourceCode` - that means it did not trigger with line numbers. This change removes the requirement for the `pre` prefix so that highlighting is triggered with or without line numbers, so long as the code is within *some* `.sourceCode` tag.
2013-12-27Add abizern.org to examplesJasper Van der Jeugt1-0/+2
2013-12-27Merge pull request #201 from mihaimaruseac/patch-1Jasper Van der Jeugt1-0/+2
Add http://techblog.rosedu.org to Hakyll Examples
2013-12-27Add http://techblog.rosedu.org to Hakyll ExamplesMihai Maruseac1-0/+2
A technical blog by ROSEdu (Romanian Open Source Education) which was recently moved to Hakyll. Still WIP on some parts.
2013-12-11Merge pull request #200 from bitraten/patch-1Jasper Van der Jeugt1-1/+1
Corrected small typo in migration guide
2013-12-10Corrected small typo in migration guidebitraten1-1/+1
2013-12-05Version bump (4.4.2.0)Jasper Van der Jeugt2-1/+6
2013-12-05Revert "Throw an error in case of duplicate compilers"Jasper Van der Jeugt2-19/+6
This reverts commit ffbce966075d258b16b44e6856333ef41e4487f4.
2013-12-05Bump various versionsJasper Van der Jeugt1-8/+8
2013-11-22Throw an error in case of duplicate compilersJasper Van der Jeugt2-6/+19
2013-11-20Merge pull request #196 from Tordek/masterJasper Van der Jeugt2-4/+4
Fixed unescaped dollar-signs in tutorials template.
2013-11-20Fixed README typoGuillermo O. Freschi1-1/+1
2013-11-20Fixed unescaped dollar-signs in tutorials template.Guillermo O. Freschi1-3/+3
2013-11-18Detect change if metadata file is deletedJasper Van der Jeugt1-1/+3
Closes #191
2013-10-19Bump tagsoupJasper Van der Jeugt1-3/+3
Closes #193
2013-10-18Bump cryptohash dependencyJasper Van der Jeugt1-3/+3
2013-10-18Added test case for global metadataAlexey Kreshchuk7-1/+85
2013-10-16Track metadata dependenciesAlexey Kreshchuk5-14/+45
I had to prepend some Rules to global Rules set. This might be possible to replaced by a correct Store.set call. I also had to prepend some Compile rules.
2013-10-15Fix root directory in directory-wise metadata and beautify codeAlexey Kreshchuk1-20/+14
2013-10-12Fix loadGlobalMetadata on WindowsAlexey Kreshchuk1-4/+4
2013-10-11added gloabl metadata parsingAlexey Kreshchuk1-2/+43
2013-10-07Add web.engr.oregonstate.edu/~walkiner/ exampleJasper Van der Jeugt1-0/+2
2013-09-29Enable Pandoc highlighting by defaultJasper Van der Jeugt3-1/+8
2013-09-29contributionJasper Van der Jeugt1-1/+1
2013-09-29Bump version (4.4.0.0), update changelogJasper Van der Jeugt2-1/+30
2013-09-29Merge remote-tracking branch 'piyush-kurur/master'Jasper Van der Jeugt1-0/+2
Conflicts: web/examples.markdown
2013-09-28added piyush's homepage to examplesPiyush P Kurur1-0/+2
2013-09-26Add dikmax.name to examplesJasper Van der Jeugt1-0/+2
2013-09-18Restrict pandoc version a bit moreJasper Van der Jeugt1-2/+2
2013-09-18updated to work with pandoc 1.12Jorge Israel Peña2-65/+62
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-17Merge pull request #181 from clinty/cryptohash0.10Jasper Van der Jeugt1-2/+2
Build with cryptohash 0.10.
2013-09-17Merge pull request #180 from clinty/quickcheck2.6Jasper Van der Jeugt1-1/+1
Work with QuickCheck 2.6
2013-09-16Build with cryptohash 0.10.Clint Adams1-2/+2
2013-09-16Work with QuickCheck 2.6Clint Adams1-1/+1
2013-09-16Merge pull request #179 from saeidw/windows-site-rootJasper Van der Jeugt1-1/+1
Fix incorrect output of toSiteRoot on Windows.
2013-09-16Fix incorrect output of toSiteRoot on Windows.Saeid Al-Wazzan1-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-30Merge pull request #178 from blaenk/port-optionJasper Van der Jeugt2-7/+13
add preview port Configuration field
2013-08-29add preview port Configuration fieldJorge Israel Peña2-7/+13
Make it possible to specify the default port to listen on when the preview server is run. This is useful if another service on the system already runs on port 8000 (the default), since it's a hassle to keep providing the port overriding option. For example: ./site preview vs. ./site preview -p 4000