Parker Moore
Parker Moore
Looks like we should update the code, then. In Ruby 3.0, they removed that from Kernel#open: https://stackoverflow.com/a/66032553
The issue here is likely around the removal of remote support from `open()` in Ruby 3.x. We'll need to figure out another way to support this. In the meantime, you...
Tests should cover the following cases: 1. Where `site.authors` is `nil` 2. Where `site.authors` is an array 3. Where `site.authors` is a hash
@alfredxing, have a minute?
Ah, I see. Generators are called before the render process is complete. That said, this should work nevertheless. Can you post a link to your site? What does your archive...
Yeah it has to be `post.content` instead of `content` or `page.content`.
> and we're back to my original statement. When I use post.content, none of the markdown or liquid tags are rendered. What does that mean? Plain text? Or a code...
> I'm running into this bug too -- {{post.content}} in an archive page loop does not process through markdown -- so you end up getting the raw markdown text instead...
The solution is to allow Jekyll to do the rendering itself. The jekyll-paginate process does this by appending a `Page` to `site.pages` and letting Jekyll do its thing. From a...
The only way to enforce this would be to render every item...