diff options
Diffstat (limited to 'web')
| -rw-r--r-- | web/css/syntax.css | 26 | ||||
| -rw-r--r-- | web/examples.markdown | 14 | ||||
| -rw-r--r-- | web/releases.markdown | 9 | ||||
| -rw-r--r-- | web/templates/tutorials.html | 6 | ||||
| -rw-r--r-- | web/tutorials/hakyll-3-to-hakyll4-migration-guide.markdown | 2 |
5 files changed, 37 insertions, 20 deletions
diff --git a/web/css/syntax.css b/web/css/syntax.css index 75ead0a..57b31eb 100644 --- a/web/css/syntax.css +++ b/web/css/syntax.css @@ -3,16 +3,16 @@ table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode, table.sourceCode { margin: 0; padding: 0; border: 0; vertical-align: baseline; border: none; } td.lineNumbers { border-right: 1px solid #AAAAAA; text-align: right; color: #AAAAAA; padding-right: 5px; padding-left: 5px; } td.sourceCode { padding-left: 5px; } -pre.sourceCode span.kw { color: #007020; font-weight: bold; } -pre.sourceCode span.dt { color: #902000; } -pre.sourceCode span.dv { color: #40a070; } -pre.sourceCode span.bn { color: #40a070; } -pre.sourceCode span.fl { color: #40a070; } -pre.sourceCode span.ch { color: #4070a0; } -pre.sourceCode span.st { color: #4070a0; } -pre.sourceCode span.co { color: #60a0b0; font-style: italic; } -pre.sourceCode span.ot { color: #007020; } -pre.sourceCode span.al { color: red; font-weight: bold; } -pre.sourceCode span.fu { color: #06287e; } -pre.sourceCode span.re { } -pre.sourceCode span.er { color: red; font-weight: bold; } +.sourceCode span.kw { color: #007020; font-weight: bold; } +.sourceCode span.dt { color: #902000; } +.sourceCode span.dv { color: #40a070; } +.sourceCode span.bn { color: #40a070; } +.sourceCode span.fl { color: #40a070; } +.sourceCode span.ch { color: #4070a0; } +.sourceCode span.st { color: #4070a0; } +.sourceCode span.co { color: #60a0b0; font-style: italic; } +.sourceCode span.ot { color: #007020; } +.sourceCode span.al { color: red; font-weight: bold; } +.sourceCode span.fu { color: #06287e; } +.sourceCode span.re { } +.sourceCode span.er { color: red; font-weight: bold; } diff --git a/web/examples.markdown b/web/examples.markdown index e178902..113bd25 100644 --- a/web/examples.markdown +++ b/web/examples.markdown @@ -53,7 +53,7 @@ this list. This list has no particular ordering. [source](https://github.com/blaenk/blaenk.github.io) - <https://xinitrc.de/>, [source](https://github.com/xinitrc/xinitrc.de) -- <http://darkfox.us.to/>, +- <http://blog.darkfox.id.au/>, [source](http://hub.darcs.net/DarkFox/DarkFox-blog) - <http://nickcharlton.net/>, [source](https://github.com/nickcharlton/nickcharlton.net) @@ -67,6 +67,16 @@ this list. This list has no particular ordering. [source](https://github.com/piyush-kurur-pages/website) - <http://web.engr.oregonstate.edu/~walkiner/>, [source](https://github.com/walkie/WebPage) +- <http://techblog.rosedu.org/>, + [source](https://github.com/rosedu/techblog) +- <http://abizern.org>, + [source](https://github.com/Abizern/hblog) +- <http://freizl.github.io>, + [source](https://github.com/freizl/freizl.github.com/tree/master/build) +- <http://covariant.me>, + [source](http://hub.darcs.net/co-dan/website) +- <http://www.gwern.net/>, + [source](https://github.com/gwern/gwern.net) ## Hakyll 3.X @@ -82,8 +92,6 @@ this list. This list has no particular ordering. [source](https://github.com/wunki/wunki.org) - <http://rs.io>, [source](https://github.com/robertseaton/rs.io/) -- <http://www.gwern.net/>, - source [on Patch-tag](https://patch-tag.com/r/gwern/Gwern/home) - <http://blog.coldflake.com/>, [source](https://github.com/marcmo/blog.coldflake) - <http://deepak.jois.name>, diff --git a/web/releases.markdown b/web/releases.markdown index bc17298..7277ea9 100644 --- a/web/releases.markdown +++ b/web/releases.markdown @@ -4,6 +4,15 @@ title: Releases # Releases +## Hakyll 4.4.3.0 + +- Fix issue when using `metadataRoute` after other custom routes + +## Hakyll 4.4.2.0 + +- Fix issue where Hakyll would not detect a change if a `.metadata` file was + deleted + ## Hakyll 4.4.1.0 - Use Pandoc 1.12 highlighting by default diff --git a/web/templates/tutorials.html b/web/templates/tutorials.html index af14097..36c808c 100644 --- a/web/templates/tutorials.html +++ b/web/templates/tutorials.html @@ -8,6 +8,6 @@ All these tutorials assume you are using the latest stable version of Hakyll. If this is not the case, you might want to update using: </p> -<pre><code>$ ghc-pkg unregister hakyll -$ cabal update -$ cabal install hakyll</code></pre> +<pre><code>$$ ghc-pkg unregister hakyll +$$ cabal update +$$ cabal install hakyll</code></pre> diff --git a/web/tutorials/hakyll-3-to-hakyll4-migration-guide.markdown b/web/tutorials/hakyll-3-to-hakyll4-migration-guide.markdown index 86e9412..929e909 100644 --- a/web/tutorials/hakyll-3-to-hakyll4-migration-guide.markdown +++ b/web/tutorials/hakyll-3-to-hakyll4-migration-guide.markdown @@ -37,7 +37,7 @@ The `Page` type in Hakyll 3.X has been removed and replaced by an `Item` type. `pageCompiler` no longer exists -- where you previously used this, you probably want to use `pandocCompiler` instead. -`Page`s where manipulated using `setField`/`getField` functions in Hakyll 3.X. +`Page`s were manipulated using `setField`/`getField` functions in Hakyll 3.X. In Hakyll 4, all metadata is completely immutable, so these functions have been removed. In order to format and add fields, use a `Context` -- see the next section. |
