gitit2
gitit2 copied to clipboard
A reimplementation of gitit in Yesod
From the development history, it seems like the rewrite has been at least put on hold, while development on gitit itself continues. It would be nice to add a note...
Gitit itself now has a stack.yaml file to work with stack, gitit2 should also get updated to work with stack potentially. Incidentally, it looks like gitit development continues, so I...
This PR includes changes suggested by @freiric and the latest refactoring in jgm/master.
For subpage `myPage` in a subdirectory `mySubdirectory`, the title or link is displayed as `mySubdirectory/myPage`. We want to display `myPage` instead.
http://stackoverflow.com/questions/30267487/scaffolding-and-workflow-for-a-yesod-sub-site The Yesod Scaffolding proposes to put the main part of an application in a library, but cabal can only handle one library per cabal file. So there should be...
Please also run hlint on travis. Hlint currently suggests to replace some underscored variable/record-entry names with camelCase. Is that OK with you?
``` hs -- | Path to a wiki page. Page and page components can't begin with '_'. data Page = Page [Text] deriving (Show, Read, Eq) ``` The comment above...
A subpage would be a wikilink alone in a paragraph in the current page. So if the wikilink is `[mySubpage]()`, the table of content of the current page would then...
I'm wondering what is the benefit of using the `.page`-file-extension in combination with the header ``` .yaml --- format : whatever --- ``` Isn't it simpler to choose the reader...