Closed zenorocha closed 12 years ago
Problem is that documentation not very clear (for not rubyist).
You instal jekyll globally (gem install jekyll
), but all other gems you install in some kind of sandbox (bundle
).
You can try this:
gem "jekyll"
to Gemfile
bundle
bundle exec jekyll
instead of jekyll
commandMeanwhile I will think if there easier way.
Still the same problem =/
It's actually working (https://gist.github.com/3760064). Taking too much time. Need to benchmark html_press.
Yeah, now it worked here, but it took almost 20min
I found the problem: slow regexps
This is very slow (even if there are no script tags)
/\s*(<script\b[^>]*?>[\s\S]*?<\/script>)\s*/i
this is much faster
/<script\b[^>]*?>[\s\S]*?<\/script>/i
I need some more time to decide what is the best fix
Nice, good to know.
Updated html_press
. Try bundle update
and bundle exec jekyll
Fix readme and add warning if gems not installed
I followed your steps and then hit
jekyll
to generate my website, but it takes forever and don't generate. Here's the source code.Do you have any ideas @stereobooster?