Commit graph

178 commits

Author SHA1 Message Date
Jasper Van der Jeugt
801e07714a Add reichertbrothers.com to examples 2014-06-10 11:13:15 +02:00
Jasper Van der Jeugt
9a97814d36 Merge branch 'master' of github.com:jaspervdj/hakyll
Conflicts:
	web/examples.markdown
2014-06-10 11:11:24 +02:00
David Sferruzza
bb1920e2e0 Add ladatura-corsets.com to examples 2014-06-08 23:20:33 +02:00
Kyle Marek-Spartz
3dc5c1fd6a Added my website to the list of examples
I just open sourced my website and so I now qualify to be added to the list.
2014-05-28 12:23:45 -05:00
kusut
bd8305aeba Update using-clay-with-hakyll.markdown
add putCss, compact version, and cabal sandbox info
2014-05-14 18:31:41 +07:00
Jasper Van der Jeugt
305e90e346 Add listx.github.io to examples 2014-05-14 11:43:49 +02:00
Jasper Van der Jeugt
5c70eab6bf Merge pull request #249 from maseek/patch-1
added site to examples
2014-05-14 11:41:40 +02:00
Jasper Van der Jeugt
3e3919eece Version bump (4.5.3.0) 2014-05-12 10:58:47 +02:00
Simonas Kazlauskas
b452cff01e Add note on Windows UTF-8 issue
Fixes #253
2014-05-10 16:18:12 +03:00
Jasper Van der Jeugt
d89fadcdb9 Version bump (4.5.2.0) 2014-05-09 12:49:10 +02:00
Tomas Zemanovic
792cc5966f added site to examples 2014-05-04 20:02:21 +01:00
Daniel Mlot
b7f7b2ea65 Add duplode.github.io to examples. 2014-04-27 03:56:00 -03:00
Jasper Van der Jeugt
e906be0214 Add secure.plaimi.net to examples 2014-04-03 10:47:01 +02:00
Jasper Van der Jeugt
30c20db9ca Add jelv.is to examples 2014-04-03 10:44:05 +02:00
Jasper Van der Jeugt
dc0c47f6df Bump version, update changelog 2014-03-26 12:20:56 +01:00
Simonas Kazlauskas
6521cd7cbc Mention -threaded option in the tutorial 2014-03-04 21:23:48 +02:00
Jasper Van der Jeugt
ecdc1d3efc Add http://www.corentindupont.info/ to examples 2014-02-25 10:31:04 +01:00
Rohan Jain
3eba064ae6 Add www.rohanjain.in as an example for Hakyll 4
Highlight: Clean URLs, Sitemaps

Signed-off-by: Rohan Jain <crodjer@gmail.com>
2014-02-17 19:27:45 +05:30
Christian Baumhof
4b34d16f9f Changed command to watch from deprecated preview 2014-01-30 00:53:57 +01:00
Jasper Van der Jeugt
bc360a3f46 Use only one site on .darkfox.id.au in examples 2014-01-21 11:34:33 +01:00
Jasper Van der Jeugt
4a6ef60466 Merge branch 'patch-1' of git://github.com/james-darkfox/hakyll into james-darkfox-patch-1 2014-01-21 11:32:21 +01:00
gwern
4b4d6bbee1 Update examples.markdown
updated gwern.net entry after an arduous switch to git and Hakyll-4
2014-01-18 15:48:13 -05:00
james-darkfox
ba8c417d15 Moved blog and changed purpose of root
I have moved the blog to blog.darkfox.id.au, hosting it on github for performance and darkfox.id.au (optionally with ssl), will include a /blog mirror and be more or less a front-page with my links / stats. (Not setup just yet)
2014-01-15 20:29:51 +11:00
Jasper Van der Jeugt
1b1694d4bd Merge pull request #204 from hh-darkfox/patch-1
Updated darkfox.us.to to darkfox.id.au+SSL
2014-01-12 02:10:20 -08:00
Dan
835f80e0df Updated examples.markdown with a link to my site 2014-01-06 22:16:51 +03:00
hh-darkfox
9619c6f308 Updated darkfox.us.to to darkfox.id.au+SSL 2014-01-05 16:38:57 +11:00
Jasper Van der Jeugt
8321a2a259 Merge pull request #202 from adelbertc/fix-syntax-css
Fix issue with syntax highlighting + line nums.
2014-01-03 07:57:32 -08:00
Jasper Van der Jeugt
b7e4225e41 Merge pull request #203 from freizl/master
Add haisheng personal blog
2014-01-03 07:55:55 -08:00
Jasper Van der Jeugt
0c43160316 Version bump (4.4.3.0) 2014-01-03 16:41:54 +01:00
Haisheng.W.WU
90c97db043 Add haisheng personal blog 2014-01-02 19:26:49 +08:00
Adelbert Chang
22434b5a69 Fix issue with syntax highlighting + line nums.
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.
2014-01-01 17:22:57 -08:00
Jasper Van der Jeugt
6ba9099225 Add abizern.org to examples 2013-12-27 16:42:09 +01:00
Mihai Maruseac
864eab3ab9 Add http://techblog.rosedu.org to Hakyll Examples
A technical blog by ROSEdu (Romanian Open Source Education) which was recently moved to Hakyll. Still WIP on some parts.
2013-12-27 09:54:45 -05:00
bitraten
1aba59c3fb Corrected small typo in migration guide 2013-12-10 22:03:58 +01:00
Jasper Van der Jeugt
a4b10ef7c3 Version bump (4.4.2.0) 2013-12-05 12:30:10 +01:00
Guillermo O. Freschi
c6050ff231 Fixed unescaped dollar-signs in tutorials template. 2013-11-20 07:11:00 -03:00
Jasper Van der Jeugt
7edbcd6216 Add web.engr.oregonstate.edu/~walkiner/ example 2013-10-07 19:34:14 +02:00
Jasper Van der Jeugt
808353bce4 Enable Pandoc highlighting by default 2013-09-29 17:52:58 +02:00
Jasper Van der Jeugt
364aa7bedc contribution 2013-09-29 15:53:46 +02:00
Jasper Van der Jeugt
cd5c78c4d6 Bump version (4.4.0.0), update changelog 2013-09-29 15:09:45 +02:00
Jasper Van der Jeugt
4948b56452 Merge remote-tracking branch 'piyush-kurur/master'
Conflicts:
	web/examples.markdown
2013-09-29 14:51:50 +02:00
Piyush P Kurur
48c579fd24 added piyush's homepage to examples 2013-09-28 10:15:28 +05:30
Jasper Van der Jeugt
5e2ec54b1b Add dikmax.name to examples 2013-09-26 01:00:33 +02:00
gwern
16488d648c Update examples.markdown: gwern.net repo home
I've ceased hosting the repo myself since it has grown to 1.6GB, and instead put it on Patch-tag.com, so the command is no longer correct.
2013-08-19 14:35:30 -04:00
Jasper Van der Jeugt
0b111066b0 Add eanalytica.com to examples 2013-08-13 00:58:20 +02:00
Daniel Mlot
98dea4c06c Added scr.stunts.hu to the example sites. 2013-08-02 02:12:52 -03:00
Jasper Van der Jeugt
a31a7bd738 Add nickcharlton.net to examples 2013-07-16 11:56:04 +02:00
Jasper Van der Jeugt
06cfafbf0d Add darkfox.us.to to examples 2013-06-18 12:17:57 +02:00
Jasper Van der Jeugt
920ddbb389 Add xinitrc.de to examples 2013-06-17 13:36:17 +02:00
Jasper Van der Jeugt
3ceaaf9430 Version bump (4.3.1.0) 2013-06-17 12:06:12 +02:00