pattex / jekyll-tagging

Jekyll plugin to automatically generate a tag cloud and tag pages.
385 stars 76 forks source link

Tag cloud not compatible with Jekyll 3.1+ #56

Closed justinjaywang closed 7 years ago

justinjaywang commented 7 years ago

{{ site | tag_cloud }} isn't compatible with Liquid drops starting in Jekyll 3.1.

Here's what it outputs:

Jekyll::Drops::SiteDrop
solars commented 7 years ago

Came across the same issue .. does anyone have a solution yet?

nhoizey commented 7 years ago

It's a known issue: #51

Unfortunately, @pattex didn't yet publish the fix on rubygems, but closed the issue asking for it… #55

solars commented 7 years ago

@nhoizey thank you

@pattex what's the current state?

nhoizey commented 7 years ago

@solars if you use Bundler to install your plugins, you can (temporarily) use current version from Github instead of the packaged version from Rubygems.

Here is how I do it myself:

gem 'jekyll-tagging', :git => 'https://github.com/pattex/jekyll-tagging.git'

You will have to remove this as soon as @pattex releases the gem, to prevent side effects during new developments.

solars commented 7 years ago

@nhoizey I did the same - for the time being. I noticed many people asked about so I wondered about the status. Thanks a lot for the suggestion!

nhoizey commented 7 years ago

@solars you're welcome!