Jasper Van der Jeugt

Results 196 comments of Jasper Van der Jeugt

`hakyllWithArgs` is used to call Hakyll as a library, but I'm not sure if anyone is using it at this point. I'd welcome all documentation improvements, but doing this as...

I think your approach sounds right! Let me know if Hakyll should expose more of what's going on in the command-line option parsing.

I don't think you necessarily need to do this through metadata, I think you can approach it from a different angle as well. What I suggest is the following flow:...

True, but you can also just use `field` -- look at the definition of `boolField`.

Okay, do you want to send a pull request to add `boolFieldM`?

Yes I'd be happy to accept a PR for that. Any PR for this should probably also have a test.

I would like to look into this during ZuriHac 2022, I'm not sure if I'll have time before that. My current suspicion is that the combination of an `MVar` (I'm...

Yeah, I wonder if we should just roll back the concurrent runtime for now given these issues. Is the slight speedup for some sites worth the overhead for others? I’m...

I have an implementation in https://github.com/jaspervdj/hakyll/tree/async-scheduler which is a bit rough but should generally work and allow us to scale much better. A few things like error handling and checking...

I was able to reproduce this easily, thanks for the excellent instructions. The issue seems in this snippet in `message-index/site.hs`: ```haskell match "messages/*/*/index.md" $ version "nav" $ do route $...