Fix Redirect example

This commit is contained in:
Jasper Van der Jeugt 2017-01-07 19:08:02 +01:00
parent 718c9a407c
commit 9992643c7a

View File

@ -35,7 +35,10 @@ import Hakyll.Core.Writable (Writable (..))
-- --
-- An example of a valid association list would be: -- An example of a valid association list would be:
-- --
-- > brokenLinks = [("/Black-market archive", "/Black-market%20archives")] -- > brokenLinks =
-- > [ ("projects.html", "http://github.com/gwern")
-- > , ("/Black-market archive", "Black-market%20archives")
-- > ]
-- --
-- In which case the functionality can then be used in `main` with a line like: -- In which case the functionality can then be used in `main` with a line like:
-- --