doc: cookbook: fix combined order

[ci skip]
This commit is contained in:
Simon Michael 2017-01-26 09:22:57 -08:00
parent 98d8909bfa
commit 2afc955f45

View File

@ -131,13 +131,15 @@ main = do
-- manuals rendered to markdown and combined, ready for web output by hakyll -- manuals rendered to markdown and combined, ready for web output by hakyll
webmanall = "site/manual.md" webmanall = "site/manual.md"
-- cookbook pages in markdown, ready for web output by hakyll (site/csv-import.md) -- cookbook pages in markdown, ready for web output by hakyll (site/csv-import.md).
-- keeping these in the main site directory allows hakyll-std to see them (and simpler urls) -- Keeping these in the main site directory allows hakyll-std to see them (and simpler urls).
-- These should be ordered like the links on the docs page, so that the combined
-- cookbook follows the same order.
cookbookpages = [ cookbookpages = [
"site/account-aliases.md" "site/entries.md"
,"site/account-separator.md"
,"site/csv-import.md" ,"site/csv-import.md"
,"site/entries.md" ,"site/account-aliases.md"
,"site/account-separator.md"
] ]
-- cookbook pages combined, ready for web output by hakyll -- cookbook pages combined, ready for web output by hakyll