排除某些特定目录被添加为类别

exclude some specific directories from being added as categories

我正在使用 jekyll 2.4.0 和 a plugin 来支持多语言静态站点生成。我的问题是提到的插件强制将我的 _posts 目录放在两个额外的目录 _i18n/{lang} 下,并且这两个目录都作为类别添加到所有 post 下的目录。

我想从 posts 的类别中删除上述目录,最好使用插件,但我不确定是否可行。

我遇到了这个 code,我可以看到目录是如何用于生成 post 类别的,但是我可以使用插件覆盖此功能吗?

所以我开始使用以下插件来解决这个问题:

module Jekyll

  class Post

    alias :populate_categories_org :populate_categories
    def populate_categories
      cats = Array(categories);

      x = cats.index("that-bad-category")
      cats.delete_at(x) unless x.nil?

      self.categories = cats

      populate_categories_org
    end

  end

end