gpt4 book ai didi

ruby - 从 Jekyll 插件运行 Liquid 过滤器

转载 作者:数据小太阳 更新时间:2023-10-29 08:48:50 29 4
gpt4 key购买 nike

Liquid 有两个名为 newline_to_brescape 的过滤器。

我正在开发一个需要通过这些过滤器运行字符串的 Jekyll 插件。有没有办法直接从插件内部调用这些过滤器,而不是安装一个单独的 gem 来执行此操作,或者为它编写我自己的代码?

最佳答案

这些过滤器可以通过 include Liquid::StandardFilters 行变得可用。

例如:

class PlaintextConverter
include Liquid::StandardFilters
def convert(content)
content = escape(content)
content = newline_to_br(content)
content
end
end

有关以这种方式可用的完整功能列表,您可以查看 the source of standardfilters.rb

关于ruby - 从 Jekyll 插件运行 Liquid 过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19074301/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com