-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enabling gem causes all HTML to be downloaded in the browser #3
Comments
I still have the same issue. I am using Jekyll 3.3.1. |
@joshkissel I tried this on a 1000+ post site, and the publish time went from ~20 sec. to over 5 min. It doesn't store the results of its calculations, so every publish took that long. I like the concept, but this plugin didn't work for my needs. |
@dstout how is it related to this issue? |
@nhoizey Relevant because the developer is MIA. |
@dstout well, I really think you should have open another issue for this… |
Not a final solution, but I got around this problem by replacing Steps:
Hope that helps someone. |
Hey, I have the same issue, you can see my code at this branch: The /cc @alfanick |
I encountered this error and digged in a little bit. It was related to this issue. An easy hack would be to explicitly set separator for io.each to avoid being messed up by change made in Packable required by nmatrix required by jekyll-related-posts In /usr/lib/ruby/2.3.0/webrick/httputils.rb change the following in load_mime_types: should work fine. |
@khliu1238 I use rbenv and ruby 2.1.3 on macOS. How can I apply this fix? EDIT |
I personally think Packable shouldn't overwrite io functions and break other gems that include it and use those functions. |
After updating the gem to the latest version, a new issue cropped up. When serving up the site with:
$ jekyll serve
the site appears fine in the browser at 127.0.0.1:4000. But if I add the gem to my Gemfile (and do nothing else), HTML pages are downloaded instead of displayed in the browser. Doesn't matter what page I try to bring up, the whole site won't display. If I then remove the gem and run jekyll serve, the site displays correctly.
The text was updated successfully, but these errors were encountered: