Others have mentioned static site generators. I like Hakyll [1] because it can tightly integrate with Pandoc [2] and allows you to develop custom solutions if your needs ever grow. [1]: https://jaspervdj.be/hakyll/ [2]: https://pandoc.org/.
– Source: Hacker News
/
8 months ago
Honestly, I’ve had a great experience with Hakyll for static site generation. There’s a bit of a learning curve to effectively use the library/framework, but in my opinion the learning curve is much lower than Yesod/Fay. If all you need is to build static website pages, I’d suggest Hakyll.
Source:
over 2 years ago
Love SSGs too! Came here to share praise for Hakyll[1], for people with an FP leaning. Predictably, it’s not easy to get started, but once you’re into it the power of building your own arbitrary content “compilers” (and template extensions etc etc) is pretty impressive. [1] https://jaspervdj.be/hakyll/.
– Source: Hacker News
/
over 2 years ago
Hi there. A friend of mine wanted to publish a blog/site at both French and English. I told him about static generators and Hakyll from u/jaspervdj but the internationalization piece was missing. Of course there are other generators with internationalization but… Well here is one for Hakyll. * Generator source code * Use case and its source code — If it already exists, please hide that fact from me. If not…
Source:
almost 3 years ago
This info is relevant because Hakyll application requires to be complied before it generates the pages, and the compilation process of Haskell is a pretty expensive (computationally saying). Although, the executable is incredible fast, due to great work made by the compiler. This processing cost will be discussed soon.
– Source: dev.to
/
about 3 years ago
Btw there is a static page generator utilizing pandoc directly: hakyll[1]. Since it’s configuration is done via haskell source code file, you need to be willing to learn a bit of haskell though. [1] https://jaspervdj.be/hakyll/.
– Source: Hacker News
/
over 3 years ago