我需要我的 Jekyll 生成器插件到 运行 一个接一个,但另一个想要最后的优先级

I need my Jekyll generator plugin to run after another, but the other wants last priority

我有一个自定义的 Jekyll 插件 — 具体来说,a generator — that I need to run after another plugin, jekyll-titles-from-headings. However, the other plugin has a generator that specifies that it is of :lowest (i.e. ) 优先级。

我拼凑的临时解决方案也指定了 :lowest 优先级,运行 恰好在 jekyll-titles-from-headings 之后,但出于我无法辨别的原因。 我想要的是在我自己的生成器中有一个声明 class 以保证我的插件在另一个生成器之后。

在我自己的生成器 class 中,我尝试覆盖似乎控制插件顺序的 comparison operators 以(以一种 hacky 的方式)硬编码 -1 的比较结果class。那没有效果。我尝试指定 -200 的自定义 @priority 值(因为看起来 :lowest = -100)。那没有编译。

我如何保证我的生成器总是 运行 在另一个生成器插件之后? 如果有某种方法可以将它指定为 post-其他发电机的必要条件,那将是理想的。

这绝对是 hack,但您可以使用以下代码覆盖插件的 spaceship 方法:

class Generator < Jekyll::Generator
  ...

  # Override the Jekyll::Plugin spaceship to push our plugin to the very end
  def self.<=>(*)
    1
  end

  ...
end

Jekyll 在插件上运行 .sort(),通常会拉取优先级,但通过覆盖 spaceship,您的插件将始终排在最后(除非另一个插件也这样做,在这种情况下您将返回最后一个不稳定的排序)。

很像在 CSS 中使用 !important,它非常丑陋,应该避免,但它有效。

对于不太全局的 hack,您可以编写 spaceship 方法来专门检查它针对哪个插件进行排序,并且仅当它针对 jekyll-titles-from-headings 进行排序时才执行上述行为,这有效地提供了 post-必要的行为,不会与另一个插件发生冲突。